View Issue Details

IDProjectCategoryView StatusLast Update
0006225GNUnetfile-sharing servicepublic2020-06-05 05:25
Reportercy1 Assigned ToChristian Grothoff  
PrioritynormalSeveritymajorReproducibilityalways
Status assignedResolutionopen 
PlatformGentooOSLinuxOS Version5.4.11
Summary0006225: gnunet-download chokes while downloading a directory with subdirs each with a bunch of files
DescriptionI've been trying to get gnunet-download working again, and I think I've finally got a reproducible test case. It's got to be a race condition or something, because the conditions to make this bug occur are very touchy. But basically, when I publish a directory, that has a bunch of subdirectories, that each have a moderate number of moderately large files (and some images), I can't download it. Even if I download it directly after publishing. Even if the data is indexed, and gnunet-fs -i reports it indexed. Even if I can download the files all individually with no delay. It still chokes. The download will be moving very quickly, with no delays, then suddenly stop cold, and never get past that seemingly arbitrary point. Resuming the download makes it even worse, making the choking point even earlier (although oddly consistent).

I'll attach the program which generates the test data, as well as the test data. File contents don't seem to matter thankfully, only file size, file count, and subdirectory count, so I can fill every file with Q and xz compresses it mightily, rather than how xz screams like a little girl and cowers in the corner when finding randomized file contents.
Steps To Reproduce1. gcc -ggdb3 ~/code/make_dumb_directory_tree.c
2. ./a.out
3. gnunet-publish -n herp
<copy the final hash>
4. gnunet-download -V -o derp.gnd <that final hash>
...
Downloading `derp/derpc.gnd' at 443/443 (0 ms remaining, 51 b/s). Block took 0 ms to download
Downloading `derp/derpwckt.gnd' at 442/442 (0 ms remaining, 50 b/s). Block took 0 ms to download
Downloading `derp/derpbc.gnd' at 440/440 (0 ms remaining, 48 b/s). Block took 0 ms to download
Downloading `derp/derpws.gnd' at 440/440 (0 ms remaining, 48 b/s). Block took 0 ms to download
<then it hangs forever>
Additional InformationYou can omit the -n to index the larger files, but it still hangs. The test data that I cannot download from myself is at gnunet://fs/chk/KANEDFHMJNHFQYQP06XZ2KXBQRXT7JXN2DQX9F2GWR83QEQRAB8G9PVFSN3BB0YYMHFHY6J7MXGQ6P0RSS1QXRR8FRY61TSSGD94Y30.GM5FQF97RFEQ04DXW3PDV1J4ZP6S0C7GJCQ2S64YFF1YHZHP4KC6F7J5CEGTA6DJ9DJWCCVHEZQS5FA31XG5RPXWYBQSESQ2M5CB9C8.28248

No idea if it works to download it remotely, rather than downloading your own data.
TagsNo tags attached.
Attached Files
testdata.tar.xz (6,404 bytes)
make_dumb_directory_tree.c (2,690 bytes)   
#include <sys/stat.h> // mkdir

#include <unistd.h> // close
#include <fcntl.h> // open, O_*
#include <string.h> // memcpy
#include <limits.h> // PATH_MAX
#include <stdbool.h>
#include <stdlib.h> // drand48
#include <errno.h>
#include <math.h> //

#include <stdio.h> // debugging

/* smallest and largest file sizes, in bytes
 */

const int seed = 42;

const int smallest_file = 40000;
const int largest_file = 5000000;
const double steepness = 128;
const int number_of_subdirs = 29;
const int max_files_per_dir = 40;

double
between(int ymin, int ymax, int xmin, int xmax, int x) {
	/* maps from xmin-xmax to ymin-ymax at x */

	double effective_x = ((double)(x - xmin) /(xmax-xmin)); /* 0-1 */
	/* bias towards ymax for higher x
	   like before 0.5 -> 0.5, but now 0.5 -> 0.9 and 0.9 to 0.99
	 */
	double result = pow(steepness, effective_x) / steepness;
	return result * (ymax-ymin) + ymin;
}	

int main(int argc, char *argv[])
{
	srand48(seed);

	char path[PATH_MAX];

	const char schars[] = "ashtgyneoiqdrwbjfupzxmcvkl";
	char achar(void) {
		return schars[(int)(drand48() * (sizeof(schars)-1))];
	}

	int addsuffix(int plen) {
		int suff;
		int top = drand48()*6 + 1;
		for(suff=0;suff<top;++suff) {
			path[plen+suff] = achar();
		}
		return plen+top;
	}
	system("rm -rf herp");
	memcpy(path, "herp/\0", 6);
	mkdir(path, 0755);
	memcpy(path+5, "derp", 4);
	int plen = 4+5;
	int subdir;
	int save1 = plen;
	for(subdir=0;subdir<number_of_subdirs;++subdir) {
		/* make sure to ignore the null for plen! */
		plen = addsuffix(plen);
		path[plen] = 0;
		mkdir(path, 0755);
		path[plen] = '/'; ++plen;
		
		memcpy(path+plen, "file", 4);
		plen += 4;
		int file;
		int top = between(1,max_files_per_dir,0,number_of_subdirs,subdir);
		printf("%d FILES\n", top);
		int save2 = plen;
		for(file=0;file<top; ++file) {
			plen = addsuffix(plen);
			if(drand48() < 0.5) {
				path[plen] = '.'; ++plen;
				path[plen] = 'h'; ++plen;
				path[plen] = 't'; ++plen;
				path[plen] = 'm'; ++plen;
				path[plen] = 'l'; ++plen;
			} else {
				path[plen] = '.'; ++plen;
				path[plen] = 't'; ++plen;
				path[plen] = 'x'; ++plen;
				path[plen] = 't'; ++plen;
			}
			path[plen] = 0;
			int out = open(path, O_WRONLY|O_CREAT|O_TRUNC, 0644);
			if(out < 0) {
				write(2, "woops: ", 7);
				const char* err = strerror(errno);
				write(2, err, strlen(err));
				abort();
			}
			int contents;
			int contop = between(smallest_file, largest_file,
								 0, 1, pow(drand48(), 0.5));
			char constr[contop];
			for(contents=0;contents<contop; ++contents) {
				constr[contents] = 'Q';//achar();
			}
			write(out, constr, contop);

			close(out);
			plen = save2;
		}
		plen = save1;
	}

    return 0;
}
make_dumb_directory_tree.c (2,690 bytes)   

Activities

cy1

2020-04-30 09:25

reporter   ~0015812

Oh the -ggdb3 thing isn't needed. I just forgot to remove it.

schanzen

2020-05-06 18:10

administrator   ~0015863

Assigning this to grothoff as fs is a black box to me atm.

cy1

2020-05-13 03:30

reporter   ~0015886

I've tried to follow fs, but the multiple cross socket jumps make it just impossible to debug. And it's 41,630 lines of code, so it's a bit much to understand. Maybe I'll take another look at it.

I was told (years ago) that the reason it was freezing was something about routing decisions that never got written as more than a hack, but these are local files, and indexed to boot, so they shouldn't get requested via any route at all.

cy1

2020-05-15 05:41

reporter   ~0015892

This is weird... the CHK for my test data changed. Did I specify the wrong CHK somehow?

gnunet://fs/chk/AJRGAG82WAENCXR4QPWQ7HCR3PQPFBK6J8BRBZV2TPAVKX1Z3631B7T27D2TGQQPCA61H7M4QR8RG92EVDZZCG3FXYR9NH3ZYW15HW8.AQ6D1QZ9EN6A7M1ZWCWFF88ZP3KBPCNDFJAS3NBWETEP27SVQNDSVKFB4S9028ETXCECTQ2PZP5XCW2EVVVTGPPSW2173GZG2SZR4E8.28249

That's the CHK to my test data. I just checked.

cy1

2020-05-17 19:27

reporter   ~0015929

For some reason, the download stopped freezing entirely, and just badly fails now, despite the fact that I haven't updated gnunet at all. It still freezes at the same point, but then always precisely 1 minute later, it resumes downloading. Unfortunately, for instance...

<code bash>
$ function doit() {
  rm -rf fail fail.gnd
  gnunet-download -V -V -V -R -o fail.gnd gnunet://fs/chk/AJRGAG82WAENCXR4QPWQ7HCR3PQPFBK6J8BRBZV2TPAVKX1Z3631B7T27D2TGQQPCA61H7M4QR8RG92EVDZZCG3FXYR9NH3ZYW15HW8.AQ6D1QZ9EN6A7M1ZWCWFF88ZP3KBPCNDFJAS3NBWETEP27SVQNDSVKFB4S9028ETXCECTQ2PZP5XCW2EVVVTGPPSW2173GZG2SZR4E8.28249
}

$ time doit | grep grep kdb
Starting download `fail/derpykdb.gnd'.
Starting download `fail/derpykdb/filebpkmcg.html'.
Downloading `fail/derpykdb.gnd' at 9118/9118 (0 ms remaining, 2816 b/s). Block took 0 ms to download
Downloading `fail/derpykdb/filebpkmcg.html' at 78750/78750 (0 ms remaining, 1808 b/s). Block took 0 ms to download
Downloading `fail/derpykdb/filebpkmcg.html' done (1808 b/s).
Downloading `fail/derpykdb.gnd' done (194 b/s).
doit 2>&1 0.06s user 0.01s system 0% cpu 1:00.08 total
grep kdb 0.00s user 0.00s system 0% cpu 1:00.08 total
</code>

Even in the full output, gnunet-download doesn't error out, and it says "Downloading `fail/derpykdb.gnd' done (194 b/s)." but using gnunet-directory, I can see that fail/derpykdb.gnd has many files in it, not just one. In the original data I uploaded...

<code bash>
$ ls herp/derpykdb
fileaq.html fileb.txt fileg.html fileixt.txt filepeqa.txt fileshupsa.txt fileyamfw.html
filea.txt filedef.txt filegmahf.html filel.txt filep.txt filet.txt fileyjfx.txt
filebpkmcg.html filedq.html filehkcij.txt filemi.txt fileqg.txt fileuj.html fileyprmeb.html
filebsosqw.html filed.txt filehxji.html filen.txt fileqw.txt fileuleaiv.txt filezrdvsi.txt
</code>
but...
<code bash>
$ ls fail/derpykdb
filebpkmcg.html
</code>
If it helps filebpkmcg.html is identical in both directories. Just the others are missing. Every subdirectory in "fail" has exactly one file in it, while many in "herp" have lots of files in them. I tried redoing gnunet-download, without deleting the existing files, but it didn't download any other files. And in every fail/*.gnd, the only file downloaded is also the first entry in gnunet-directory.

Incidentally in my test data, all the regular files are identical. 78,750 bytes of the letter Q. So if gnunet has one of them, it should have all of them, and none should silently fail to download. ...I should see what happens when I change the file size slightly.

cy1

2020-05-17 21:38

reporter   ~0015930

Oh, that would explain why gnunet-fs reports only one of them indexed, though, if they're all the same file.

cy1

2020-05-20 01:37

reporter   ~0015933

Here's a new edition of make_dumb_download.c that produces a slightly less degenerate set of test data, and freezes partway through despite all files being indexed.

And... the test data it generates. All files containing Q but in varying amounts for different file sizes. Oh and here's the log of gnunet-download. Well, of...

$ rm derp derp.gnd -rf; time gnunet-download -V -V -V -o derp.gnd -R gnunet://fs/chk/FFGTWZ4ZWPZ8Y9T4T8S79KE5YMX0898ZNE2HNCCWRY865HWTVGVS2ETQ0YA0JSPZ5Z601BWVNJHQ4KQ14JAXX0HMEEB2QQPZFTPGXR0.523SVBFHY1DTWM42YKV1FBVPT8QB2P9G3T3Z0A6J6EC6A7C7H4352JJ92XA01G8090WC6EKPXHVTW2VZKC8014K89V8S2S7Q2Q6MD88.78237 |& s6-tai64n | tee dl.log

The freeze happens at `derp/derpxjmfn/filehktb.txt' around @400000005ec469dd21d65862 where the next timestamp is @400000005ec46a9103d89815, approximately 12.9 minutes later.
Also the time command says this:
0.72s user 0.03s system 0% cpu 3:00.54 total

3 minutes is a lot less than 12.9 minutes, so I don't know what's special about 10 minutes that the "time" command would forget about them.

The data is correctly downloaded at least. (i.e. copied from where it's already indexed.) So there's a second "bug" where if multiple files in a directory are identical, gnunet-download will only recreate the first one. I'm not sure how likely that is to ever happen in a real world application, but it is there. The bug I'm concerned with is this freeze, since it makes no sense to freeze on downloading already indexed files, every time at exactly the same place for exactly 12.9 minutes, only 3 of which register as being used by the process.

Oh, and downloading again without deleting the data does not freeze it, once all the data has downloaded. I'm not sure which files I would have to remove to get the download to freeze again, other than a rm -rf of all of them.
make_dumb_directory_tree-2.c (2,896 bytes)   
#include <sys/stat.h> // mkdir

#include <unistd.h> // close
#include <fcntl.h> // open, O_*
#include <string.h> // memcpy
#include <limits.h> // PATH_MAX
#include <stdbool.h>
#include <stdlib.h> // drand48
#include <errno.h>
#include <math.h> //
#include <err.h>
#include <errno.h>

#include <stdio.h> // debugging

/* smallest and largest file sizes, in bytes
 */

const int seed = 42;

const int smallest_file = 40000;
const int largest_file = 80000;
const double steepness = 128;
const int number_of_subdirs = 29;
const int max_files_per_dir = 40;

double
between(int ymin, int ymax, int xmin, int xmax, double x) {
	/* maps from xmin-xmax to ymin-ymax at x */

	double effective_x = (((double)(x - xmin)) /(xmax-xmin)); /* 0-1 */
	/* bias towards ymax for higher x
	   like before 0.5 -> 0.5, but now 0.5 -> 0.9 and 0.9 to 0.99
	 */
	double result = pow(steepness, effective_x) / steepness;
	return result * (ymax-ymin) + ymin;
}	

int main(int argc, char *argv[])
{
	srand48(seed);

	char path[PATH_MAX];

	const char schars[] = "ashtgyneoiqdrwbjfupzxmcvkl";
	char achar(void) {
		return schars[(int)(drand48() * (sizeof(schars)-1))];
	}

	int addsuffix(int plen) {
		int suff;
		int top = drand48()*6 + 1;
		for(suff=0;suff<top;++suff) {
			path[plen+suff] = achar();
		}
		return plen+top;
	}
	system("rm -rf herp");
	memcpy(path, "herp/\0", 6);
	mkdir(path, 0755);
	memcpy(path+5, "derp", 4);
	int plen = 4+5;
	int subdir;
	int save1 = plen;
	for(subdir=0;subdir<number_of_subdirs;++subdir) {
		/* make sure to ignore the null for plen! */
		plen = addsuffix(plen);
		path[plen] = 0;
		mkdir(path, 0755);
		path[plen] = '/'; ++plen;
		
		memcpy(path+plen, "file", 4);
		plen += 4;
		int file;
		int top = between(1,max_files_per_dir,0,number_of_subdirs,subdir);
		printf("%d FILES\n", top);
		int save2 = plen;
		for(file=0;file<top; ++file) {
			plen = addsuffix(plen);
			if(drand48() < 0.5) {
				path[plen] = '.'; ++plen;
				path[plen] = 'h'; ++plen;
				path[plen] = 't'; ++plen;
				path[plen] = 'm'; ++plen;
				path[plen] = 'l'; ++plen;
			} else {
				path[plen] = '.'; ++plen;
				path[plen] = 't'; ++plen;
				path[plen] = 'x'; ++plen;
				path[plen] = 't'; ++plen;
			}
			path[plen] = 0;
			int out = open(path, O_WRONLY|O_CREAT|O_TRUNC, 0644);
			if(out < 0) {
				write(2, "woops: ", 7);
				const char* err = strerror(errno);
				write(2, err, strlen(err));
				abort();
			}
			int contents;
			int contop = between(smallest_file, largest_file,
								 0, 1, pow(drand48(), 0.5));
			char constr[contop];
			for(contents=0;contents<contop; ++contents) {
				constr[contents] = 'Q';//achar();
			}
			size_t off = 0;
			for(;;) {
				ssize_t amt = write(out, constr + off, contop - off);
				if(amt < 0) {
					err(errno, "write");
				}
				if(amt == 0) {
					break;
				}
				off += amt;
			}

			close(out);
			plen = save2;
		}
		plen = save1;
	}

    return 0;
}
make_dumb_directory_tree-2.c (2,896 bytes)   
testdata.tar-2.xz (7,748 bytes)
dl.log (88,957 bytes)   
@400000005ec469dc393eb8f2 Starting download `derp.gnd'.
@400000005ec469dc397536c9 Starting download `derp/derproz.gnd'.
@400000005ec469dc39c0ceea Starting download `derp/derpykdb.gnd'.
@400000005ec469dc3a06e5be Starting download `derp/derph.gnd'.
@400000005ec469dc3a4402c5 Starting download `derp/derpvy.gnd'.
@400000005ec469dc3a7b3a5a Starting download `derp/derpatlgx.gnd'.
@400000005ec469dc3a8db92c Starting download `derp/derpzviab.gnd'.
@400000005ec469dc3a97ede8 Starting download `derp/derppjg.gnd'.
@400000005ec469dc3ac5b63c Starting download `derp/derpmpgd.gnd'.
@400000005ec469dc3aeb9600 Starting download `derp/derpdnuvj.gnd'.
@400000005ec469dc3b09c88b Starting download `derp/derpdximv.gnd'.
@400000005ec469dc3b29a64d Starting download `derp/derprrjr.gnd'.
@400000005ec469dc3b4250ef Starting download `derp/derpqi.gnd'.
@400000005ec469dc3b56f29a Starting download `derp/derpjhmili.gnd'.
@400000005ec469dc3b6b1c02 Starting download `derp/derptpg.gnd'.
@400000005ec469dc3b7c49d3 Starting download `derp/derpmv.gnd'.
@400000005ec469dc3b8a5d19 Starting download `derp/derprcuuh.gnd'.
@400000005ec469dc3b969e93 Starting download `derp/derpkkjwzj.gnd'.
@400000005ec469dd00039192 Starting download `derp/derpl.gnd'.
@400000005ec469dd000e8dab Starting download `derp/derpnaav.gnd'.
@400000005ec469dd00142c47 Starting download `derp/derpz.gnd'.
@400000005ec469dd001c5cce Starting download `derp/derpda.gnd'.
@400000005ec469dd00252dd5 Starting download `derp/derpqrbn.gnd'.
@400000005ec469dd002a126d Starting download `derp/derpwckt.gnd'.
@400000005ec469dd002f0e30 Starting download `derp/derpohqhc.gnd'.
@400000005ec469dd0034ad81 Starting download `derp/derpc.gnd'.
@400000005ec469dd0039ec30 Starting download `derp/derpws.gnd'.
@400000005ec469dd003ea960 Starting download `derp/derpbc.gnd'.
@400000005ec469dd004390dd Starting download `derp/derpaxjv.gnd'.
@400000005ec469dd0046a467 Starting download `derp/derpxjmfn.gnd'.
@400000005ec469dd0049af0f Starting download `derp/derproz/filetn.html'.
@400000005ec469dd0091a44b Starting download `derp/derproz/fileirqp.html'.
@400000005ec469dd00d7bb98 Starting download `derp/derproz/filepsiuly.txt'.
@400000005ec469dd011c57d2 Starting download `derp/derproz/fileomkqsm.html'.
@400000005ec469dd01608e2e Starting download `derp/derproz/fileaguxx.html'.
@400000005ec469dd01a489f3 Starting download `derp/derproz/fileg.txt'.
@400000005ec469dd01b268fa Downloading `derp.gnd' at 0/78237 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec469dd01b26da2 Downloading `derp.gnd' at 12701/78237 (5 ms remaining, 11 KiB/s). Block took 0 ms to download
@400000005ec469dd01b26f1f Downloading `derp.gnd' at 45469/78237 (1002 µs remaining, 31 KiB/s). Block took 0 ms to download
@400000005ec469dd01b27037 Downloading `derp.gnd' at 78237/78237 (0 ms remaining, 34 KiB/s). Block took 0 ms to download
@400000005ec469dd01b27150 Downloading `derp/derproz.gnd' at 12542/12542 (0 ms remaining, 6 KiB/s). Block took 0 ms to download
@400000005ec469dd01b2725e Downloading `derp/derpykdb.gnd' at 11121/11121 (0 ms remaining, 1619 b/s). Block took 0 ms to download
@400000005ec469dd01b27377 Downloading `derp/derph.gnd' at 9510/9510 (0 ms remaining, 836 b/s). Block took 0 ms to download
@400000005ec469dd01b2748f Downloading `derp/derpvy.gnd' at 7793/7793 (0 ms remaining, 510 b/s). Block took 0 ms to download
@400000005ec469dd01b275c6 Downloading `derp/derpatlgx.gnd' at 3133/3133 (0 ms remaining, 166 b/s). Block took 0 ms to download
@400000005ec469dd01b276de Downloading `derp/derpzviab.gnd' at 959/959 (0 ms remaining, 49 b/s). Block took 0 ms to download
@400000005ec469dd01b277f7 Downloading `derp/derppjg.gnd' at 6924/6924 (0 ms remaining, 343 b/s). Block took 0 ms to download
@400000005ec469dd01b27905 Downloading `derp/derpmpgd.gnd' at 5975/5975 (0 ms remaining, 258 b/s). Block took 0 ms to download
@400000005ec469dd01b27a1e Downloading `derp/derpdnuvj.gnd' at 5082/5082 (0 ms remaining, 199 b/s). Block took 0 ms to download
@400000005ec469dd01b27b2c Downloading `derp/derpdximv.gnd' at 4529/4529 (0 ms remaining, 165 b/s). Block took 0 ms to download
@400000005ec469dd01b27c45 Downloading `derp/derprrjr.gnd' at 3689/3689 (0 ms remaining, 125 b/s). Block took 0 ms to download
@400000005ec469dd01b27d53 Downloading `derp/derpqi.gnd' at 2906/2906 (0 ms remaining, 93 b/s). Block took 0 ms to download
@400000005ec469dd01b27e6c Downloading `derp/derpjhmili.gnd' at 2495/2495 (0 ms remaining, 77 b/s). Block took 0 ms to download
@400000005ec469dd01b27f7a Downloading `derp/derptpg.gnd' at 2199/2199 (0 ms remaining, 65 b/s). Block took 0 ms to download
@400000005ec469dd01b28093 Downloading `derp/derpmv.gnd' at 1772/1772 (0 ms remaining, 51 b/s). Block took 0 ms to download
@400000005ec469dd01b281ab Downloading `derp/derprcuuh.gnd' at 1683/1683 (0 ms remaining, 47 b/s). Block took 0 ms to download
@400000005ec469dd01b282ba Downloading `derp/derpkkjwzj.gnd' at 930/930 (0 ms remaining, 25 b/s). Block took 0 ms to download
@400000005ec469dd01b283d2 Downloading `derp/derpl.gnd' at 1337/1337 (0 ms remaining, 36 b/s). Block took 0 ms to download
@400000005ec469dd01b284eb Downloading `derp/derpnaav.gnd' at 1170/1170 (0 ms remaining, 31 b/s). Block took 0 ms to download
@400000005ec469dd01b28604 Downloading `derp/derpz.gnd' at 931/931 (0 ms remaining, 24 b/s). Block took 0 ms to download
@400000005ec469dd01b28712 Downloading `derp/derpda.gnd' at 940/940 (0 ms remaining, 24 b/s). Block took 0 ms to download
@400000005ec469dd01b2882b Downloading `derp/derpqrbn.gnd' at 527/527 (0 ms remaining, 13 b/s). Block took 0 ms to download
@400000005ec469dd01b28939 Downloading `derp/derpwckt.gnd' at 523/523 (0 ms remaining, 13 b/s). Block took 0 ms to download
@400000005ec469dd01b28a52 Downloading `derp/derpohqhc.gnd' at 533/533 (0 ms remaining, 13 b/s). Block took 0 ms to download
@400000005ec469dd01b28b6a Downloading `derp/derpc.gnd' at 526/526 (0 ms remaining, 13 b/s). Block took 0 ms to download
@400000005ec469dd01b28c79 Downloading `derp/derpws.gnd' at 518/518 (0 ms remaining, 12 b/s). Block took 0 ms to download
@400000005ec469dd01b28d91 Downloading `derp/derpbc.gnd' at 519/519 (0 ms remaining, 12 b/s). Block took 0 ms to download
@400000005ec469dd01b28ea0 Downloading `derp/derpaxjv.gnd' at 443/443 (0 ms remaining, 10 b/s). Block took 0 ms to download
@400000005ec469dd01b28fb8 Downloading `derp/derpxjmfn.gnd' at 443/443 (0 ms remaining, 10 b/s). Block took 0 ms to download
@400000005ec469dd01b290f9 Downloading `derp/derproz/filetn.html' at 63536/63536 (0 ms remaining, 1540 b/s). Block took 0 ms to download
@400000005ec469dd01b2922f Downloading `derp/derproz/filetn.html' done (1540 b/s).
@400000005ec469dd01b29370 Downloading `derp/derproz/fileirqp.html' at 61068/61068 (0 ms remaining, 1336 b/s). Block took 0 ms to download
@400000005ec469dd01b294cf Downloading `derp/derproz/fileirqp.html' done (1336 b/s).
@400000005ec469dd01b29619 Downloading `derp/derproz/filepsiuly.txt' at 58839/58839 (0 ms remaining, 1176 b/s). Block took 0 ms to download
@400000005ec469dd01b29746 Downloading `derp/derproz/filepsiuly.txt' done (1176 b/s).
@400000005ec469dd01b2987c Downloading `derp/derproz/fileomkqsm.html' at 51436/51436 (0 ms remaining, 948 b/s). Block took 0 ms to download
@400000005ec469dd01b299a9 Downloading `derp/derproz/fileomkqsm.html' done (948 b/s).
@400000005ec469dd01b29ae0 Downloading `derp/derproz/fileaguxx.html' at 53133/53133 (0 ms remaining, 908 b/s). Block took 0 ms to download
@400000005ec469dd01b29c20 Downloading `derp/derproz/fileaguxx.html' done (908 b/s).
@400000005ec469dd01ecb183 Downloading `derp/derproStarting download `derp/derproz/fileaso.txt'.
@400000005ec469dd022d21f2 Starting download `derp/derproz/filehbhj.txt'.
@400000005ec469dd0271139e Starting download `derp/derproz/filetxruth.html'.
@400000005ec469dd02b41fd6 Starting download `derp/derproz/filewkw.txt'.
@400000005ec469dd02f6b546 Starting download `derp/derproz/filejdnkur.txt'.
@400000005ec469dd0339a912 Starting download `derp/derproz/fileucdf.txt'.
@400000005ec469dd0379ff85 Starting download `derp/derproz/filegfm.html'.
@400000005ec469dd03bd6f10 Starting download `derp/derproz/filexswslm.txt'.
@400000005ec469dd04001482 Starting download `derp/derproz/fileisw.txt'.
@400000005ec469dd04433487 Starting download `derp/derproz/filelygu.html'.
@400000005ec469dd0485a9f4 Starting download `derp/derproz/filely.txt'.
@400000005ec469dd04c85133 Starting download `derp/derproz/filexijq.html'.
@400000005ec469dd050a7307 Starting download `derp/derproz/filexceq.html'.
@400000005ec469dd054c6d9a Starting download `derp/derproz/filep.txt'.
@400000005ec469dd058f1c35 Starting download `derp/derproz/filed.html'.
@400000005ec469dd05d1aa36 Starting download `derp/derproz/filez.txt'.
@400000005ec469dd061497b4 Starting download `derp/derproz/filel.html'.
@400000005ec469dd06568214 Starting download `derp/derproz/fileud.txt'.
@400000005ec469dd069a300b Starting download `derp/derproz/fileji.txt'.
@400000005ec469dd06dc9f49 Starting download `derp/derproz/filevsapgg.txt'.
@400000005ec469dd06dca3dd Starting download `derp/derproz/fileiqfzjv.txt'.
@400000005ec469dd06dca528 Starting download `derp/derproz/filelitd.txt'.
@400000005ec469dd06dcbeca Starting download `derp/derproz/fileucu.html'.
@400000005ec469dd06dcc033 Starting download `derp/derproz/fileii.html'.
@400000005ec469dd06dcc174 Starting download `derp/derproz/filekmop.html'.
@400000005ec469dd06dcdb2a Starting download `derp/derproz/filedeoc.html'.
@400000005ec469dd06dcf708 Starting download `derp/derpykdb/filebsosqw.html'.
@400000005ec469dd07226c9f Starting download `derp/derpykdb/filebpkmcg.html'.
@400000005ec469dd0767136a Starting download `derp/derpykdb/filehkcij.txt'.
@400000005ec469dd07aac3e3 Starting download `derp/derpykdb/fileuleaiv.txt'.
@400000005ec469dd07ef18e3 Starting download `derp/derpykdb/filed.txt'.
@400000005ec469dd07fe1a9e z/fileg.txt' at 58248/58248 (0 ms remaining, 927 b/s). Block took 0 ms to download
@400000005ec469dd07fe1e38 Downloading `derp/derproz/fileg.txt' done (927 b/s).
@400000005ec469dd07fe1f79 Downloading `derp/derproz/fileaso.txt' at 48799/48799 (0 ms remaining, 727 b/s). Block took 0 ms to download
@400000005ec469dd07fe20af Downloading `derp/derproz/fileaso.txt' done (727 b/s).
@400000005ec469dd07fe21a0 Downloading `derp/derproz/filehbhj.txt' at 45967/45967 (0 ms remaining, 645 b/s). Block took 0 ms to download
@400000005ec469dd07fe22a4 Downloading `derp/derproz/filehbhj.txt' done (645 b/s).
@400000005ec469dd07fe23a9 Downloading `derp/derproz/filetxruth.html' at 41306/41306 (0 ms remaining, 546 b/s). Block took 0 ms to download
@400000005ec469dd07fe24ad Downloading `derp/derproz/filetxruth.html' done (546 b/s).
@400000005ec469dd07fe25a8 Downloading `derp/derproz/filewkw.txt' at 44821/44821 (0 ms remaining, 561 b/s). Block took 0 ms to download
@400000005ec469dd07fe2698 Downloading `derp/derproz/filewkw.txt' done (561 b/s).
@400000005ec469dd07fe2793 Downloading `derp/derproz/filejdnkur.txt' at 40574/40574 (0 ms remaining, 483 b/s). Block took 0 ms to download
@400000005ec469dd07fe288d Downloading `derp/derproz/filejdnkur.txt' done (483 b/s).
@400000005ec469dd07fe2973 Downloading `derp/derproz/fileucdf.txt' at 43169/43169 (0 ms remaining, 489 b/s). Block took 0 ms to download
@400000005ec469dd07fe2a78 Downloading `derp/derproz/fileucdf.txt' done (489 b/s).
@400000005ec469dd07fe2bcd Downloading `derp/derproz/filegfm.html' at 44363/44363 (0 ms remaining, 480 b/s). Block took 0 ms to download
@400000005ec469dd07fe2ce5 Downloading `derp/derproz/filegfm.html' done (480 b/s).
@400000005ec469dd07fe2df4 Downloading `derp/derproz/filexswslm.txt' at 41827/41827 (0 ms remaining, 433 b/s). Block took 0 ms to download
@400000005ec469dd07fe2f3e Downloading `derp/derproz/filexswslm.txt' done (433 b/s).
@400000005ec469dd07fe3061 Downloading `derp/derproz/fileisw.txt' at 43189/43189 (0 ms remaining, 428 b/s). Block took 0 ms to download
@400000005ec469dd07fe3151 Downloading `derp/derproz/fileisw.txt' done (428 b/s).
@400000005ec469dd07fe324c Downloading `derp/derproz/filelygu.html' at 43263/43263 (0 ms remaining, 412 b/s). Block took 0 ms to download
@400000005ec469dd07fe3346 Downloading `derp/derproz/filelygu.html' done (412 b/s).
@400000005ec469dd07fe3441 Downloading `derp/derproz/filely.txt' at 45029/45029 (0 ms remaining, 412 b/s). Block took 0 ms to download
@400000005ec469dd07fe353b Downloading `derp/derproz/filely.txt' done (412 b/s).
@400000005ec469dd07fe362c Downloading `derp/derproz/filexijq.html' at 40608/40608 (0 ms remaining, 358 b/s). Block took 0 ms to download
@400000005ec469dd07fe371c Downloading `derp/derproz/filexijq.html' done (358 b/s).
@400000005ec469dd07fe3817 Downloading `derp/derproz/filexceq.html' at 40461/40461 (0 ms remaining, 344 b/s). Block took 0 ms to download
@400000005ec469dd07fe3911 Downloading `derp/derproz/filexceq.html' done (344 b/s).
@400000005ec469dd07fe3a16 Downloading `derp/derproz/filep.txt' at 41469/41469 (0 ms remaining, 340 b/s). Block took 0 ms to download
@400000005ec469dd07fe3afc Downloading `derp/derproz/filep.txt' done (340 b/s).
@400000005ec469dd07fe3c00 Downloading `derp/derproz/filed.html' at 41101/41101 (0 ms remaining, 326 b/s). Block took 0 ms to download
@400000005ec469dd07fe3d05 Downloading `derp/derproz/filed.html' done (326 b/s).
@400000005ec469dd07fe3dff Downloading `derp/derproz/filez.txt' at 40787/40787 (0 ms remaining, 313 b/s). Block took 0 ms to download
@400000005ec469dd07fe3ef0 Downloading `derp/derproz/filez.txt' done (313 b/s).
@400000005ec469dd07fe3fe0 Downloading `derp/derproz/filel.html' at 40910/40910 (0 ms remaining, 304 b/s). Block took 0 ms to download
@400000005ec469dd07fe40db Downloading `derp/derproz/filel.html' done (304 b/s).
@400000005ec469dd07fe41cb Downloading `derp/derproz/fileud.txt' at 44639/44639 (0 ms remaining, 322 b/s). Block took 0 ms to download
@400000005ec469dd07fe42b2 Downloading `derp/derproz/fileud.txt' done (322 b/s).
@400000005ec469dd07fe43a2 Downloading `derp/derproz/fileji.txt' at 41473/41473 (0 ms remaining, 290 b/s). Block took 0 ms to download
@400000005ec469dd07fe4493 Downloading `derp/derproz/fileji.txt' done (290 b/s).
@400000005ec469dd07fe458d Downloading `derp/derpykdb/filebsosqw.html' at 65326/65326 (0 ms remaining, 445 b/s). Block took 0 ms to download
@400000005ec469dd07fe4688 Downloading `derp/derpykdb/filebsosqw.html' done (445 b/s).
@400000005ec469dd07fe4782 Downloading `derp/derpykdb/filebpkmcg.html' at 57622/57622 (0 ms remaining, 381 b/s). Block took 0 ms to download
@400000005ec469dd07fe4872 Downloading `derp/derpykdb/filebpkmcg.html' done (381 b/s).
@400000005ec469dd07fe496d Downloading `derp/derpykdb/filehkcij.txt' at 60164/60164 (0 ms remaining, 387 b/s). Block took 0 ms to download
@400000005ec469dd07fe4a5d Downloading `derp/derpykdb/filehkcij.txt' done (387 b/s).
@400000005ec469dd07fe4b62 Downloading `derp/derpykdb/fileuleaiv.txt' at 54927/54927 (0 ms remaining, 344 b/s). Block took 0 ms to download
@400000005ec469dd07fe4c52 Downloading `derp/derpykdb/fileuleaiv.txt' done (344 b/s).
@400000005ec469dd07fe4d61 Downloading `derp/derpykdb/filed.txt' at 59774/59774 (0 ms remaining, 365 b/s). Block took 0 ms to download
@400000005ec469dd0832cfc7 Downloading `derp/derpykdbStarting download `derp/derpykdb/fileyamfw.html'.
@400000005ec469dd0874b5cf Starting download `derp/derpykdb/fileixt.txt'.
@400000005ec469dd08b71adf Starting download `derp/derpykdb/fileaq.html'.
@400000005ec469dd08f90a92 Starting download `derp/derpykdb/fileyprmeb.html'.
@400000005ec469dd0939b04f Starting download `derp/derpykdb/filen.txt'.
@400000005ec469dd097b9b9f Starting download `derp/derpykdb/filezrdvsi.txt'.
@400000005ec469dd09bbcc25 Starting download `derp/derpykdb/fileb.txt'.
@400000005ec469dd09ff271b Starting download `derp/derpykdb/fileshupsa.txt'.
@400000005ec469dd0a3f8847 Starting download `derp/derpykdb/filedq.html'.
@400000005ec469dd0a7f60fb Starting download `derp/derpykdb/filegmahf.html'.
@400000005ec469dd0abefe83 Starting download `derp/derpykdb/fileqw.txt'.
@400000005ec469dd0b00b4d5 Starting download `derp/derpykdb/fileyjfx.txt'.
@400000005ec469dd0b40b7ec Starting download `derp/derpykdb/filet.txt'.
@400000005ec469dd0b81ae3e Starting download `derp/derpykdb/filel.txt'.
@400000005ec469dd0bc45ae3 Starting download `derp/derpykdb/filemi.txt'.
@400000005ec469dd0c03ecd5 Starting download `derp/derpykdb/fileg.html'.
@400000005ec469dd0c434c73 Starting download `derp/derpykdb/filea.txt'.
@400000005ec469dd0c836593 Starting download `derp/derpykdb/filep.txt'.
@400000005ec469dd0cc33ff6 Starting download `derp/derpykdb/filepeqa.txt'.
@400000005ec469dd0cc35753 Starting download `derp/derpykdb/fileuj.html'.
@400000005ec469dd0cc3729a Starting download `derp/derpykdb/filedef.txt'.
@400000005ec469dd0cc38ebe Starting download `derp/derpykdb/filehxji.html'.
@400000005ec469dd0cc3b70d Starting download `derp/derpykdb/fileqg.txt'.
@400000005ec469dd0cc3c4e8 Starting download `derp/derph/fileuxr.html'.
@400000005ec469dd0cffb051 Starting download `derp/derph/filedplb.html'.
@400000005ec469dd0d3adcdc Starting download `derp/derph/filexh.html'.
@400000005ec469dd0d764701 Starting download `derp/derph/filetopgu.html'.
@400000005ec469dd0db3e39d Starting download `derp/derph/fileq.html'.
@400000005ec469dd0dee999d Starting download `derp/derph/filelfdgrh.txt'.
@400000005ec469dd0e26e7e2 Starting download `derp/derph/fileda.txt'.
@400000005ec469dd0e33db46 /filed.txt' done (365 b/s).
@400000005ec469dd0e33e20b Downloading `derp/derpykdb/fileyamfw.html' at 52819/52819 (0 ms remaining, 314 b/s). Block took 0 ms to download
@400000005ec469dd0e33e3d8 Downloading `derp/derpykdb/fileyamfw.html' done (314 b/s).
@400000005ec469dd0e33e587 Downloading `derp/derpykdb/fileixt.txt' at 56184/56184 (0 ms remaining, 326 b/s). Block took 0 ms to download
@400000005ec469dd0e33e703 Downloading `derp/derpykdb/fileixt.txt' done (326 b/s).
@400000005ec469dd0e33e89e Downloading `derp/derpykdb/fileaq.html' at 48659/48659 (0 ms remaining, 276 b/s). Block took 0 ms to download
@400000005ec469dd0e33ea39 Downloading `derp/derpykdb/fileaq.html' done (276 b/s).
@400000005ec469dd0e33ebab Downloading `derp/derpykdb/fileyprmeb.html' at 46342/46342 (0 ms remaining, 257 b/s). Block took 0 ms to download
@400000005ec469dd0e33ed3c Downloading `derp/derpykdb/fileyprmeb.html' done (257 b/s).
@400000005ec469dd0e33eecd Downloading `derp/derpykdb/filen.txt' at 50517/50517 (0 ms remaining, 274 b/s). Block took 0 ms to download
@400000005ec469dd0e33f036 Downloading `derp/derpykdb/filen.txt' done (274 b/s).
@400000005ec469dd0e33f1c6 Downloading `derp/derpykdb/filezrdvsi.txt' at 43164/43164 (0 ms remaining, 229 b/s). Block took 0 ms to download
@400000005ec469dd0e33f34d Downloading `derp/derpykdb/filezrdvsi.txt' done (229 b/s).
@400000005ec469dd0e33f4d4 Downloading `derp/derpykdb/fileb.txt' at 49147/49147 (0 ms remaining, 255 b/s). Block took 0 ms to download
@400000005ec469dd0e33f651 Downloading `derp/derpykdb/fileb.txt' done (255 b/s).
@400000005ec469dd0e33f7e1 Downloading `derp/derpykdb/fileshupsa.txt' at 45127/45127 (0 ms remaining, 229 b/s). Block took 0 ms to download
@400000005ec469dd0e33f94a Downloading `derp/derpykdb/fileshupsa.txt' done (229 b/s).
@400000005ec469dd0e33fadb Downloading `derp/derpykdb/filedq.html' at 44195/44195 (0 ms remaining, 220 b/s). Block took 0 ms to download
@400000005ec469dd0e33fc4d Downloading `derp/derpykdb/filedq.html' done (220 b/s).
@400000005ec469dd0e33fdd4 Downloading `derp/derpykdb/filegmahf.html' at 41660/41660 (0 ms remaining, 203 b/s). Block took 0 ms to download
@400000005ec469dd0e33ff47 Downloading `derp/derpykdb/filegmahf.html' done (203 b/s).
@400000005ec469dd0e3400e2 Downloading `derp/derpykdb/fileqw.txt' at 47778/47778 (0 ms remaining, 228 b/s). Block took 0 ms to download
@400000005ec469dd0e34025e Downloading `derp/derpykdb/fileqw.txt' done (228 b/s).
@400000005ec469dd0e3403db Downloading `derp/derpykdb/fileyjfx.txt' at 43067/43067 (0 ms remaining, 202 b/s). Block took 0 ms to download
@400000005ec469dd0e34054e Downloading `derp/derpykdb/fileyjfx.txt' done (202 b/s).
@400000005ec469dd0e3406cb Downloading `derp/derpykdb/filet.txt' at 44300/44300 (0 ms remaining, 204 b/s). Block took 0 ms to download
@400000005ec469dd0e340851 Downloading `derp/derpykdb/filet.txt' done (204 b/s).
@400000005ec469dd0e3409c4 Downloading `derp/derpykdb/filel.txt' at 42130/42130 (0 ms remaining, 190 b/s). Block took 0 ms to download
@400000005ec469dd0e340b41 Downloading `derp/derpykdb/filel.txt' done (190 b/s).
@400000005ec469dd0e340c9f Downloading `derp/derpykdb/filemi.txt' at 43286/43286 (0 ms remaining, 192 b/s). Block took 0 ms to download
@400000005ec469dd0e340e26 Downloading `derp/derpykdb/filemi.txt' done (192 b/s).
@400000005ec469dd0e340fa3 Downloading `derp/derpykdb/fileg.html' at 40848/40848 (0 ms remaining, 178 b/s). Block took 0 ms to download
@400000005ec469dd0e341116 Downloading `derp/derpykdb/fileg.html' done (178 b/s).
@400000005ec469dd0e341292 Downloading `derp/derpykdb/filea.txt' at 42068/42068 (0 ms remaining, 180 b/s). Block took 0 ms to download
@400000005ec469dd0e341419 Downloading `derp/derpykdb/filea.txt' done (180 b/s).
@400000005ec469dd0e3415aa Downloading `derp/derpykdb/filep.txt' at 40974/40974 (0 ms remaining, 172 b/s). Block took 0 ms to download
@400000005ec469dd0e341712 Downloading `derp/derpykdb/filep.txt' done (172 b/s).
@400000005ec469dd0e341885 Downloading `derp/derph/fileuxr.html' at 62323/62323 (0 ms remaining, 258 b/s). Block took 0 ms to download
@400000005ec469dd0e341a0c Downloading `derp/derph/fileuxr.html' done (258 b/s).
@400000005ec469dd0e341b93 Downloading `derp/derph/filedplb.html' at 63926/63926 (0 ms remaining, 261 b/s). Block took 0 ms to download
@400000005ec469dd0e341d05 Downloading `derp/derph/filedplb.html' done (261 b/s).
@400000005ec469dd0e341e64 Downloading `derp/derph/filexh.html' at 62696/62696 (0 ms remaining, 252 b/s). Block took 0 ms to download
@400000005ec469dd0e341ff5 Downloading `derp/derph/filexh.html' done (252 b/s).
@400000005ec469dd0e34217b Downloading `derp/derph/filetopgu.html' at 54334/54334 (0 ms remaining, 215 b/s). Block took 0 ms to download
@400000005ec469dd0e3422da Downloading `derp/derph/filetopgu.html' done (215 b/s).
@400000005ec469dd0e342457 Downloading `derp/derph/fileq.html' at 58617/58617 (0 ms remaining, 229 b/s). Block took 0 ms to download
@400000005ec469dd0e3425ca Downloading `derp/derph/fileq.html' done (229 b/s).
@400000005ec469dd0e3427b4 Downloading `derp/derph/filelfdgrh.txt' at 50743/50743 (0 ms remaining, 195 b/s). Block took 0 ms to download
@400000005ec469dd0e342959 Downloading `derp/derph/filelfdgrh.txt' done (195 b/s).
@400000005ec469dd0e61933d Downloading `derp/derph/fileda.txt' at 54652/54652 (0 ms remaining, 207 b/s). Block took 0 ms to dowStarting download `derp/derph/fileafowmv.html'.
@400000005ec469dd0e9ac118 Starting download `derp/derph/filessdv.txt'.
@400000005ec469dd0ed3cebd Starting download `derp/derph/filejt.txt'.
@400000005ec469dd0f0e626b Starting download `derp/derph/fileib.txt'.
@400000005ec469dd0f47c2d6 Starting download `derp/derph/fileuyyam.html'.
@400000005ec469dd0f8320e3 Starting download `derp/derph/filebof.txt'.
@400000005ec469dd0fbc4455 Starting download `derp/derph/filesmydt.html'.
@400000005ec469dd0ff4234c Starting download `derp/derph/filepvu.html'.
@400000005ec469dd1029e838 Starting download `derp/derph/filelbewz.txt'.
@400000005ec469dd1062fa68 Starting download `derp/derph/filexai.html'.
@400000005ec469dd109af3a2 Starting download `derp/derph/filezwn.html'.
@400000005ec469dd10d2539a Starting download `derp/derph/fileu.txt'.
@400000005ec469dd110b8fbd Starting download `derp/derph/fileyqnegt.txt'.
@400000005ec469dd110ba485 Starting download `derp/derph/fileobysv.txt'.
@400000005ec469dd110bc47f Starting download `derp/derph/fileylm.txt'.
@400000005ec469dd110bddf9 Starting download `derp/derph/filen.html'.
@400000005ec469dd110c0291 Starting download `derp/derph/filei.txt'.
@400000005ec469dd110c101b Starting download `derp/derpvy/filefqotce.html'.
@400000005ec469dd11432d13 Starting download `derp/derpvy/fileao.html'.
@400000005ec469dd117b4040 Starting download `derp/derpvy/filenhfm.txt'.
@400000005ec469dd11b1f35a Starting download `derp/derpvy/fileqcnfev.txt'.
@400000005ec469dd11e7ad97 Starting download `derp/derpvy/fileq.txt'.
@400000005ec469dd121f1993 Starting download `derp/derpvy/filekmxzmi.txt'.
@400000005ec469dd1256078a Starting download `derp/derpvy/filevrj.txt'.
@400000005ec469dd128b82ec Starting download `derp/derpvy/fileo.html'.
@400000005ec469dd12c224ce Starting download `derp/derpvy/filese.txt'.
@400000005ec469dd12f843e6 Starting download `derp/derpvy/fileaphgqm.html'.
@400000005ec469dd132d099c Starting download `derp/derpvy/fileir.html'.
@400000005ec469dd13625504 Starting download `derp/derpvy/fileqn.txt'.
@400000005ec469dd139762e5 Starting download `derp/derpvy/filesuau.html'.
@400000005ec469dd13a29926 nload
@400000005ec469dd13a29d10 Downloading `derp/derph/fileda.txt' done (207 b/s).
@400000005ec469dd13a29f04 Downloading `derp/derph/fileafowmv.html' at 46226/46226 (0 ms remaining, 173 b/s). Block took 0 ms to download
@400000005ec469dd13a2a0a9 Downloading `derp/derph/fileafowmv.html' done (173 b/s).
@400000005ec469dd13a2a23a Downloading `derp/derph/filessdv.txt' at 49600/49600 (0 ms remaining, 183 b/s). Block took 0 ms to download
@400000005ec469dd13a2a3c1 Downloading `derp/derph/filessdv.txt' done (183 b/s).
@400000005ec469dd13a2a53d Downloading `derp/derph/filejt.txt' at 53864/53864 (0 ms remaining, 196 b/s). Block took 0 ms to download
@400000005ec469dd13a2a6ba Downloading `derp/derph/filejt.txt' done (196 b/s).
@400000005ec469dd13a2a82d Downloading `derp/derph/fileib.txt' at 51798/51798 (0 ms remaining, 186 b/s). Block took 0 ms to download
@400000005ec469dd13a2a9aa Downloading `derp/derph/fileib.txt' done (186 b/s).
@400000005ec469dd13a2ab26 Downloading `derp/derph/fileuyyam.html' at 41248/41248 (0 ms remaining, 146 b/s). Block took 0 ms to download
@400000005ec469dd13a2aca3 Downloading `derp/derph/fileuyyam.html' done (146 b/s).
@400000005ec469dd13a2adf8 Downloading `derp/derph/filebof.txt' at 45744/45744 (0 ms remaining, 160 b/s). Block took 0 ms to download
@400000005ec469dd13a2af56 Downloading `derp/derph/filebof.txt' done (160 b/s).
@400000005ec469dd13a2b0b5 Downloading `derp/derph/filesmydt.html' at 42545/42545 (0 ms remaining, 147 b/s). Block took 0 ms to download
@400000005ec469dd13a2b23c Downloading `derp/derph/filesmydt.html' done (147 b/s).
@400000005ec469dd13a2b3c2 Downloading `derp/derph/filepvu.html' at 42267/42267 (0 ms remaining, 144 b/s). Block took 0 ms to download
@400000005ec469dd13a2b58f Downloading `derp/derph/filepvu.html' done (144 b/s).
@400000005ec469dd13a2b716 Downloading `derp/derph/filelbewz.txt' at 41654/41654 (0 ms remaining, 141 b/s). Block took 0 ms to download
@400000005ec469dd13a2b89d Downloading `derp/derph/filelbewz.txt' done (141 b/s).
@400000005ec469dd13a2b9fb Downloading `derp/derph/filexai.html' at 43063/43063 (0 ms remaining, 144 b/s). Block took 0 ms to download
@400000005ec469dd13a2bb6e Downloading `derp/derph/filexai.html' done (144 b/s).
@400000005ec469dd13a2bce1 Downloading `derp/derph/filezwn.html' at 41834/41834 (0 ms remaining, 138 b/s). Block took 0 ms to download
@400000005ec469dd13a2be4a Downloading `derp/derph/filezwn.html' done (138 b/s).
@400000005ec469dd13a2bfb2 Downloading `derp/derph/fileu.txt' at 41589/41589 (0 ms remaining, 136 b/s). Block took 0 ms to download
@400000005ec469dd13a2c111 Downloading `derp/derph/fileu.txt' done (136 b/s).
@400000005ec469dd13a2c27a Downloading `derp/derpvy/filefqotce.html' at 55834/55834 (0 ms remaining, 180 b/s). Block took 0 ms to download
@400000005ec469dd13a2c3e2 Downloading `derp/derpvy/filefqotce.html' done (180 b/s).
@400000005ec469dd13a2c541 Downloading `derp/derpvy/fileao.html' at 59148/59148 (0 ms remaining, 189 b/s). Block took 0 ms to download
@400000005ec469dd13a2c6c8 Downloading `derp/derpvy/fileao.html' done (189 b/s).
@400000005ec469dd13a2c81c Downloading `derp/derpvy/filenhfm.txt' at 56418/56418 (0 ms remaining, 178 b/s). Block took 0 ms to download
@400000005ec469dd13a2c971 Downloading `derp/derpvy/filenhfm.txt' done (178 b/s).
@400000005ec469dd13a2cae4 Downloading `derp/derpvy/fileqcnfev.txt' at 53366/53366 (0 ms remaining, 167 b/s). Block took 0 ms to download
@400000005ec469dd13a2cc56 Downloading `derp/derpvy/fileqcnfev.txt' done (167 b/s).
@400000005ec469dd13a2cdab Downloading `derp/derpvy/fileq.txt' at 56708/56708 (0 ms remaining, 175 b/s). Block took 0 ms to download
@400000005ec469dd13a2cf0a Downloading `derp/derpvy/fileq.txt' done (175 b/s).
@400000005ec469dd13a2d072 Downloading `derp/derpvy/filekmxzmi.txt' at 52077/52077 (0 ms remaining, 159 b/s). Block took 0 ms to download
@400000005ec469dd13a2d1f9 Downloading `derp/derpvy/filekmxzmi.txt' done (159 b/s).
@400000005ec469dd13a2d358 Downloading `derp/derpvy/filevrj.txt' at 50425/50425 (0 ms remaining, 153 b/s). Block took 0 ms to download
@400000005ec469dd13a2d4ca Downloading `derp/derpvy/filevrj.txt' done (153 b/s).
@400000005ec469dd13a2d629 Downloading `derp/derpvy/fileo.html' at 54835/54835 (0 ms remaining, 164 b/s). Block took 0 ms to download
@400000005ec469dd13a2d774 Downloading `derp/derpvy/fileo.html' done (164 b/s).
@400000005ec469dd13a2d8be Downloading `derp/derpvy/filese.txt' at 52983/52983 (0 ms remaining, 157 b/s). Block took 0 ms to download
@400000005ec469dd13a2da13 Downloading `derp/derpvy/filese.txt' done (157 b/s).
@400000005ec469dd13a2dba4 Downloading `derp/derpvy/fileaphgqm.html' at 45526/45526 (0 ms remaining, 134 b/s). Block took 0 ms to download
@400000005ec469dd13a2dd16 Downloading `derp/derpvy/fileaphgqm.html' done (134 b/s).
@400000005ec469dd13a2de75 Downloading `derp/derpvy/fileir.html' at 44541/44541 (0 ms remaining, 130 b/s). Block took 0 ms to download
@400000005ec469dd13a2dfe8 Downloading `derp/derpvy/fileir.html' done (130 b/s).
@400000005ec469dd13a2e146 Downloading `derp/derpvy/fileqn.txt' at 47014/47014 (0 ms remaining, 135 b/s). Block took 0 ms to download
@400000005ec469dd13a2e2a5 Downloading `derp/derpvy/fileqn.txt' done (135 b/s).
@400000005ec469dd13a2e418 Downloading `derp/derpvy/filesuau.html' at 43697/43697 (0 ms remaining, 125 b/s). Block took 0 ms to download
@400000005ec469dd13cbdf9e Downloading `derp/deStarting download `derp/derpvy/filehkmlw.txt'.
@400000005ec469dd13ff1ce0 Starting download `derp/derpvy/filemooyj.txt'.
@400000005ec469dd14342efb Starting download `derp/derpvy/filey.html'.
@400000005ec469dd146964b4 Starting download `derp/derpvy/filevf.txt'.
@400000005ec469dd149dd6fb Starting download `derp/derpvy/filed.html'.
@400000005ec469dd14d1bf56 Starting download `derp/derpvy/filehde.html'.
@400000005ec469dd14d1c3cd Starting download `derp/derpatlgx/filepysx.txt'.
@400000005ec469dd14ebb1f9 Starting download `derp/derpatlgx/filewdbkq.txt'.
@400000005ec469dd1504c451 Starting download `derp/derpatlgx/filek.html'.
@400000005ec469dd151defbf Starting download `derp/derpatlgx/filectwscv.txt'.
@400000005ec469dd15359c62 Starting download `derp/derpatlgx/files.txt'.
@400000005ec469dd154dbb4d Starting download `derp/derpatlgx/filesvtmbm.html'.
@400000005ec469dd154dc5de Starting download `derp/derpatlgx/fileiqh.html'.
@400000005ec469dd154df6b5 Starting download `derp/derpatlgx/fileb.txt'.
@400000005ec469dd154df9d7 Starting download `derp/derpzviab/fileomymlv.html'.
@400000005ec469dd15624dbf Starting download `derp/derpzviab/filemg.txt'.
@400000005ec469dd1586caab Starting download `derp/derppjg/filevpbzv.html'.
@400000005ec469dd15b95ea9 Starting download `derp/derppjg/filenpapui.html'.
@400000005ec469dd15e99478 Starting download `derp/derppjg/filecrqmr.html'.
@400000005ec469dd161c744e Starting download `derp/derppjg/filecvp.txt'.
@400000005ec469dd164d97e8 Starting download `derp/derppjg/fileruodhb.html'.
@400000005ec469dd167ce857 Starting download `derp/derppjg/filenbmab.txt'.
@400000005ec469dd16ad81d4 Starting download `derp/derppjg/filecbmlbu.html'.
@400000005ec469dd16dc8b8b Starting download `derp/derppjg/filelpiaa.html'.
@400000005ec469dd170b22aa Starting download `derp/derppjg/filehs.html'.
@400000005ec469dd173a5669 Starting download `derp/derppjg/filefdd.html'.
@400000005ec469dd177664c5 Starting download `derp/derppjg/fileigt.html'.
@400000005ec469dd17a2b3f1 Starting download `derp/derppjg/filemrak.html'.
@400000005ec469dd17adbc0d rpvy/filesuau.html' done (125 b/s).
@400000005ec469dd17adbf43 Downloading `derp/derpvy/filehkmlw.txt' at 41893/41893 (0 ms remaining, 118 b/s). Block took 0 ms to download
@400000005ec469dd17adc08d Downloading `derp/derpvy/filehkmlw.txt' done (118 b/s).
@400000005ec469dd17adc188 Downloading `derp/derpvy/filemooyj.txt' at 44606/44606 (0 ms remaining, 125 b/s). Block took 0 ms to download
@400000005ec469dd17adc2aa Downloading `derp/derpvy/filemooyj.txt' done (125 b/s).
@400000005ec469dd17adc3cd Downloading `derp/derpvy/filey.html' at 44746/44746 (0 ms remaining, 124 b/s). Block took 0 ms to download
@400000005ec469dd17adc4db Downloading `derp/derpvy/filey.html' done (124 b/s).
@400000005ec469dd17adc5f4 Downloading `derp/derpvy/filevf.txt' at 41537/41537 (0 ms remaining, 114 b/s). Block took 0 ms to download
@400000005ec469dd17adc6f8 Downloading `derp/derpvy/filevf.txt' done (114 b/s).
@400000005ec469dd17adc7fd Downloading `derp/derpvy/filed.html' at 40597/40597 (0 ms remaining, 111 b/s). Block took 0 ms to download
@400000005ec469dd17adc8f7 Downloading `derp/derpvy/filed.html' done (111 b/s).
@400000005ec469dd17adc9e8 Downloading `derp/derpatlgx/filepysx.txt' at 55492/55492 (0 ms remaining, 150 b/s). Block took 0 ms to download
@400000005ec469dd17adcad8 Downloading `derp/derpatlgx/filepysx.txt' done (150 b/s).
@400000005ec469dd17adcbc9 Downloading `derp/derpatlgx/filewdbkq.txt' at 53248/53248 (0 ms remaining, 143 b/s). Block took 0 ms to download
@400000005ec469dd17adccd7 Downloading `derp/derpatlgx/filewdbkq.txt' done (143 b/s).
@400000005ec469dd17adce2c Downloading `derp/derpatlgx/filek.html' at 49656/49656 (0 ms remaining, 133 b/s). Block took 0 ms to download
@400000005ec469dd17adcf3a Downloading `derp/derpatlgx/filek.html' done (133 b/s).
@400000005ec469dd17add035 Downloading `derp/derpatlgx/filectwscv.txt' at 40924/40924 (0 ms remaining, 109 b/s). Block took 0 ms to download
@400000005ec469dd17add139 Downloading `derp/derpatlgx/filectwscv.txt' done (109 b/s).
@400000005ec469dd17add22a Downloading `derp/derpatlgx/files.txt' at 47106/47106 (0 ms remaining, 125 b/s). Block took 0 ms to download
@400000005ec469dd17add324 Downloading `derp/derpatlgx/files.txt' done (125 b/s).
@400000005ec469dd17add41f Downloading `derp/derpzviab/fileomymlv.html' at 59466/59466 (0 ms remaining, 158 b/s). Block took 0 ms to download
@400000005ec469dd17add519 Downloading `derp/derpzviab/fileomymlv.html' done (158 b/s).
@400000005ec469dd17add600 Downloading `derp/derpzviab/filemg.txt' at 58255/58255 (0 ms remaining, 154 b/s). Block took 0 ms to download
@400000005ec469dd17add6fa Downloading `derp/derpzviab/filemg.txt' done (154 b/s).
@400000005ec469dd17add7e1 Downloading `derp/derpzviab.gnd' done (2 b/s).
@400000005ec469dd17add8d1 Downloading `derp/derppjg/filevpbzv.html' at 63424/63424 (0 ms remaining, 167 b/s). Block took 0 ms to download
@400000005ec469dd17add9c1 Downloading `derp/derppjg/filevpbzv.html' done (167 b/s).
@400000005ec469dd17addac6 Downloading `derp/derppjg/filenpapui.html' at 62439/62439 (0 ms remaining, 163 b/s). Block took 0 ms to download
@400000005ec469dd17addbb6 Downloading `derp/derppjg/filenpapui.html' done (163 b/s).
@400000005ec469dd17addca7 Downloading `derp/derppjg/filecrqmr.html' at 63327/63327 (0 ms remaining, 164 b/s). Block took 0 ms to download
@400000005ec469dd17addd97 Downloading `derp/derppjg/filecrqmr.html' done (164 b/s).
@400000005ec469dd17adde88 Downloading `derp/derppjg/filecvp.txt' at 58585/58585 (0 ms remaining, 151 b/s). Block took 0 ms to download
@400000005ec469dd17addf78 Downloading `derp/derppjg/filecvp.txt' done (151 b/s).
@400000005ec469dd17ade07d Downloading `derp/derppjg/fileruodhb.html' at 49942/49942 (0 ms remaining, 127 b/s). Block took 0 ms to download
@400000005ec469dd17ade16d Downloading `derp/derppjg/fileruodhb.html' done (127 b/s).
@400000005ec469dd17ade254 Downloading `derp/derppjg/filenbmab.txt' at 55237/55237 (0 ms remaining, 140 b/s). Block took 0 ms to download
@400000005ec469dd17ade34e Downloading `derp/derppjg/filenbmab.txt' done (140 b/s).
@400000005ec469dd17ade448 Downloading `derp/derppjg/filecbmlbu.html' at 45199/45199 (0 ms remaining, 113 b/s). Block took 0 ms to download
@400000005ec469dd17ade539 Downloading `derp/derppjg/filecbmlbu.html' done (113 b/s).
@400000005ec469dd17ade629 Downloading `derp/derppjg/filelpiaa.html' at 43886/43886 (0 ms remaining, 109 b/s). Block took 0 ms to download
@400000005ec469dd17ade710 Downloading `derp/derppjg/filelpiaa.html' done (109 b/s).
@400000005ec469dd17ade7f6 Downloading `derp/derppjg/filehs.html' at 45042/45042 (0 ms remaining, 111 b/s). Block took 0 ms to download
@400000005ec469dd17ade8e7 Downloading `derp/derppjg/filehs.html' done (111 b/s).
@400000005ec469dd17ade9d7 Downloading `derp/derppjg/filefdd.html' at 44719/44719 (0 ms remaining, 110 b/s). Block took 0 ms to download
@400000005ec469dd17adeac8 Downloading `derp/derppjg/filefdd.html' done (110 b/s).
@400000005ec469dd17adebae Downloading `derp/derppjg/fileigt.html' at 41662/41662 (0 ms remaining, 101 b/s). Block took 0 ms to download
@400000005ec469dd17adec9f Downloading `derp/derppjg/fileigt.html' done (101 b/s).
@400000005ec469dd17aded8f Downloading `derp/derppjg/filemrak.html' at 41683/41683 (0 ms remaining, 101 b/s). Block took 0 ms to download
@400000005ec469dd17d0794b Downloading `derp/derppjg/filemrak.html' done (1Starting download `derp/derppjg/filemnq.txt'.
@400000005ec469dd17feb404 Starting download `derp/derppjg/filemtelk.txt'.
@400000005ec469dd182c9e96 Starting download `derp/derppjg/fileq.html'.
@400000005ec469dd185ce1dc Starting download `derp/derppjg/filegdfqjn.txt'.
@400000005ec469dd185ce6ac Starting download `derp/derppjg/filem.html'.
@400000005ec469dd185ce801 Starting download `derp/derpmpgd/filedbv.html'.
@400000005ec469dd1885eb6f Starting download `derp/derpmpgd/filexs.txt'.
@400000005ec469dd18b0e83b Starting download `derp/derpmpgd/filekcount.txt'.
@400000005ec469dd18d9ded4 Starting download `derp/derpmpgd/filel.html'.
@400000005ec469dd19045a0c Starting download `derp/derpmpgd/filetdk.html'.
@400000005ec469dd192c6492 Starting download `derp/derpmpgd/filevcx.txt'.
@400000005ec469dd1954b382 Starting download `derp/derpmpgd/fileejx.txt'.
@400000005ec469dd197c0ee6 Starting download `derp/derpmpgd/fileqj.html'.
@400000005ec469dd19a36a4a Starting download `derp/derpmpgd/filenpnq.html'.
@400000005ec469dd19cba7c5 Starting download `derp/derpmpgd/filea.html'.
@400000005ec469dd19f3d502 Starting download `derp/derpmpgd/fileul.html'.
@400000005ec469dd1a1b9650 Starting download `derp/derpmpgd/fileqs.txt'.
@400000005ec469dd1a425a20 Starting download `derp/derpmpgd/fileabokng.txt'.
@400000005ec469dd1a425faf Starting download `derp/derpmpgd/fileqmiygk.txt'.
@400000005ec469dd1a427ff9 Starting download `derp/derpmpgd/files.txt'.
@400000005ec469dd1a4281e4 Starting download `derp/derpdnuvj/filesyace.html'.
@400000005ec469dd1a66fb0e Starting download `derp/derpdnuvj/fileq.txt'.
@400000005ec469dd1a89fe09 Starting download `derp/derpdnuvj/filehkniz.html'.
@400000005ec469dd1aab31b9 Starting download `derp/derpdnuvj/filewswce.html'.
@400000005ec469dd1acbdec8 Starting download `derp/derpdnuvj/filegdxjvg.txt'.
@400000005ec469dd1aecd3d0 Starting download `derp/derpdnuvj/filedxk.txt'.
@400000005ec469dd1b0d8790 Starting download `derp/derpdnuvj/filelum.html'.
@400000005ec469dd1b300f44 Starting download `derp/derpdnuvj/filet.html'.
@400000005ec469dd1b4e79bc Starting download `derp/derpdnuvj/filel.txt'.
@400000005ec469dd1b6e744b Starting download `derp/derpdnuvj/fileydxft.html'.
@400000005ec469dd1b6e78c1 Starting download `derp/derpdnuvj/filedyoy.html'.
@400000005ec469dd1b6e7a0c Starting download `derp/derpdnuvj/filenslt.html'.
@400000005ec469dd1b6e949f Starting download `derp/derpdnuvj/fileq.html'.
@400000005ec469dd1b6e9607 Starting download `derp/derpdximv/filetrssws.txt'.
@400000005ec469dd1b7d46f2 01 b/s).
@400000005ec469dd1b7d4896 Downloading `derp/derppjg/filemnq.txt' at 41621/41621 (0 ms remaining, 100 b/s). Block took 0 ms to download
@400000005ec469dd1b7d4a27 Downloading `derp/derppjg/filemnq.txt' done (100 b/s).
@400000005ec469dd1b7d4b36 Downloading `derp/derppjg/filemtelk.txt' at 41085/41085 (0 ms remaining, 98 b/s). Block took 0 ms to download
@400000005ec469dd1b7d4c30 Downloading `derp/derppjg/filemtelk.txt' done (98 b/s).
@400000005ec469dd1b7d4d35 Downloading `derp/derppjg/fileq.html' at 44297/44297 (0 ms remaining, 105 b/s). Block took 0 ms to download
@400000005ec469dd1b7d4e1b Downloading `derp/derppjg/fileq.html' done (105 b/s).
@400000005ec469dd1b7d4f2a Downloading `derp/derpmpgd/filedbv.html' at 56778/56778 (0 ms remaining, 134 b/s). Block took 0 ms to download
@400000005ec469dd1b7d502e Downloading `derp/derpmpgd/filedbv.html' done (134 b/s).
@400000005ec469dd1b7d5132 Downloading `derp/derpmpgd/filexs.txt' at 62319/62319 (0 ms remaining, 146 b/s). Block took 0 ms to download
@400000005ec469dd1b7d522d Downloading `derp/derpmpgd/filexs.txt' done (146 b/s).
@400000005ec469dd1b7d531d Downloading `derp/derpmpgd/filekcount.txt' at 52917/52917 (0 ms remaining, 123 b/s). Block took 0 ms to download
@400000005ec469dd1b7d540e Downloading `derp/derpmpgd/filekcount.txt' done (123 b/s).
@400000005ec469dd1b7d5508 Downloading `derp/derpmpgd/filel.html' at 58552/58552 (0 ms remaining, 135 b/s). Block took 0 ms to download
@400000005ec469dd1b7d55f9 Downloading `derp/derpmpgd/filel.html' done (135 b/s).
@400000005ec469dd1b7d56e9 Downloading `derp/derpmpgd/filetdk.html' at 47360/47360 (0 ms remaining, 109 b/s). Block took 0 ms to download
@400000005ec469dd1b7d57e4 Downloading `derp/derpmpgd/filetdk.html' done (109 b/s).
@400000005ec469dd1b7d58ca Downloading `derp/derpmpgd/filevcx.txt' at 46131/46131 (0 ms remaining, 105 b/s). Block took 0 ms to download
@400000005ec469dd1b7d59c5 Downloading `derp/derpmpgd/filevcx.txt' done (105 b/s).
@400000005ec469dd1b7d5aab Downloading `derp/derpmpgd/fileejx.txt' at 45096/45096 (0 ms remaining, 102 b/s). Block took 0 ms to download
@400000005ec469dd1b7d5b9c Downloading `derp/derpmpgd/fileejx.txt' done (102 b/s).
@400000005ec469dd1b7d5c8c Downloading `derp/derpmpgd/fileqj.html' at 42219/42219 (0 ms remaining, 95 b/s). Block took 0 ms to download
@400000005ec469dd1b7d5d7c Downloading `derp/derpmpgd/fileqj.html' done (95 b/s).
@400000005ec469dd1b7d5e6d Downloading `derp/derpmpgd/filenpnq.html' at 42260/42260 (0 ms remaining, 95 b/s). Block took 0 ms to download
@400000005ec469dd1b7d5f67 Downloading `derp/derpmpgd/filenpnq.html' done (95 b/s).
@400000005ec469dd1b7d604e Downloading `derp/derpmpgd/filea.html' at 46717/46717 (0 ms remaining, 104 b/s). Block took 0 ms to download
@400000005ec469dd1b7d6148 Downloading `derp/derpmpgd/filea.html' done (104 b/s).
@400000005ec469dd1b7d6239 Downloading `derp/derpmpgd/fileul.html' at 40482/40482 (0 ms remaining, 90 b/s). Block took 0 ms to download
@400000005ec469dd1b7d631f Downloading `derp/derpmpgd/fileul.html' done (90 b/s).
@400000005ec469dd1b7d641a Downloading `derp/derpmpgd/fileqs.txt' at 41208/41208 (0 ms remaining, 91 b/s). Block took 0 ms to download
@400000005ec469dd1b7d650a Downloading `derp/derpmpgd/fileqs.txt' done (91 b/s).
@400000005ec469dd1b7d6605 Downloading `derp/derpdnuvj/filesyace.html' at 62375/62375 (0 ms remaining, 137 b/s). Block took 0 ms to download
@400000005ec469dd1b7d66f5 Downloading `derp/derpdnuvj/filesyace.html' done (137 b/s).
@400000005ec469dd1b7d67e5 Downloading `derp/derpdnuvj/fileq.txt' at 59711/59711 (0 ms remaining, 131 b/s). Block took 0 ms to download
@400000005ec469dd1b7d68e0 Downloading `derp/derpdnuvj/fileq.txt' done (131 b/s).
@400000005ec469dd1b7d69e4 Downloading `derp/derpdnuvj/filehkniz.html' at 48195/48195 (0 ms remaining, 105 b/s). Block took 0 ms to download
@400000005ec469dd1b7d6ad5 Downloading `derp/derpdnuvj/filehkniz.html' done (105 b/s).
@400000005ec469dd1b7d6bc5 Downloading `derp/derpdnuvj/filewswce.html' at 43140/43140 (0 ms remaining, 94 b/s). Block took 0 ms to download
@400000005ec469dd1b7d6cb6 Downloading `derp/derpdnuvj/filewswce.html' done (94 b/s).
@400000005ec469dd1b7d6da6 Downloading `derp/derpdnuvj/filegdxjvg.txt' at 44550/44550 (0 ms remaining, 96 b/s). Block took 0 ms to download
@400000005ec469dd1b7d6ea1 Downloading `derp/derpdnuvj/filegdxjvg.txt' done (96 b/s).
@400000005ec469dd1b7d6f91 Downloading `derp/derpdnuvj/filedxk.txt' at 42656/42656 (0 ms remaining, 92 b/s). Block took 0 ms to download
@400000005ec469dd1b7d7082 Downloading `derp/derpdnuvj/filedxk.txt' done (92 b/s).
@400000005ec469dd1b7d7190 Downloading `derp/derpdnuvj/filelum.html' at 43113/43113 (0 ms remaining, 92 b/s). Block took 0 ms to download
@400000005ec469dd1b7d72d1 Downloading `derp/derpdnuvj/filelum.html' done (92 b/s).
@400000005ec469dd1b7d73d5 Downloading `derp/derpdnuvj/filet.html' at 43227/43227 (0 ms remaining, 92 b/s). Block took 0 ms to download
@400000005ec469dd1b7d74d0 Downloading `derp/derpdnuvj/filet.html' done (92 b/s).
@400000005ec469dd1b7d75de Downloading `derp/derpdnuvj/filel.txt' at 42775/42775 (0 ms remaining, 91 b/s). Block took 0 ms to download
@400000005ec469dd1b7d76e3 Downloading `derp/derpdnuvj/filel.txt' done (91 b/s).
@400000005ec469dd1b956763 Downloading `derp/derpdximv/filetrssws.txt' at 65309/65309 (0 ms remaining, 138 b/s). BloStarting download `derp/derpdximv/filexqh.txt'.
@400000005ec469dd1bb8fbc3 Starting download `derp/derpdximv/fileehw.html'.
@400000005ec469dd1bdbf8cb Starting download `derp/derpdximv/filebjnay.html'.
@400000005ec469dd1c0022fb Starting download `derp/derpdximv/filefoze.txt'.
@400000005ec469dd1c21ad79 Starting download `derp/derpdximv/filec.html'.
@400000005ec469dd1c45ab5b Starting download `derp/derpdximv/fileor.html'.
@400000005ec469dd1c6951ee Starting download `derp/derpdximv/filerq.html'.
@400000005ec469dd1c8c60b1 Starting download `derp/derpdximv/filejt.txt'.
@400000005ec469dd1cb0703a Starting download `derp/derpdximv/filew.html'.
@400000005ec469dd1cd354eb Starting download `derp/derpdximv/filegix.html'.
@400000005ec469dd1cd35989 Starting download `derp/derprrjr/filehrmynp.html'.
@400000005ec469dd1cf1aecb Starting download `derp/derprrjr/filedb.html'.
@400000005ec469dd1d10ddb9 Starting download `derp/derprrjr/filevhiedj.txt'.
@400000005ec469dd1d2e31c7 Starting download `derp/derprrjr/fileyzggjz.html'.
@400000005ec469dd1d4b0cfa Starting download `derp/derprrjr/fileof.txt'.
@400000005ec469dd1d68b569 Starting download `derp/derprrjr/fileg.txt'.
@400000005ec469dd1d85e5cf Starting download `derp/derprrjr/filegcprh.txt'.
@400000005ec469dd1da22f62 Starting download `derp/derprrjr/filef.html'.
@400000005ec469dd1dbf1101 Starting download `derp/derprrjr/filele.txt'.
@400000005ec469dd1dbf2275 Starting download `derp/derpqi/filey.html'.
@400000005ec469dd1ddd5094 Starting download `derp/derpqi/filefql.html'.
@400000005ec469dd1dfa45f6 Starting download `derp/derpqi/fileisq.html'.
@400000005ec469dd1e161908 Starting download `derp/derpqi/fileiiaair.txt'.
@400000005ec469dd1e30a2e3 Starting download `derp/derpqi/filegrmz.html'.
@400000005ec469dd1e4b6845 Starting download `derp/derpqi/filec.txt'.
@400000005ec469dd1e6535af Starting download `derp/derpqi/filex.html'.
@400000005ec469dd1e654fac Starting download `derp/derpjhmili/filemejlo.txt'.
@400000005ec469dd1e809756 Starting download `derp/derpjhmili/filegmbfc.txt'.
@400000005ec469dd1e8dc79f ck took 0 ms to download
@400000005ec469dd1e8dcbf7 Downloading `derp/derpdximv/filetrssws.txt' done (138 b/s).
@400000005ec469dd1e8dcdce Downloading `derp/derpdximv/filexqh.txt' at 48916/48916 (0 ms remaining, 103 b/s). Block took 0 ms to download
@400000005ec469dd1e8dcf87 Downloading `derp/derpdximv/filexqh.txt' done (103 b/s).
@400000005ec469dd1e8dd140 Downloading `derp/derpdximv/fileehw.html' at 49472/49472 (0 ms remaining, 104 b/s). Block took 0 ms to download
@400000005ec469dd1e8dd2bd Downloading `derp/derpdximv/fileehw.html' done (104 b/s).
@400000005ec469dd1e8dd44d Downloading `derp/derpdximv/filebjnay.html' at 43754/43754 (0 ms remaining, 91 b/s). Block took 0 ms to download
@400000005ec469dd1e8dd5ac Downloading `derp/derpdximv/filebjnay.html' done (91 b/s).
@400000005ec469dd1e8dd715 Downloading `derp/derpdximv/filefoze.txt' at 47532/47532 (0 ms remaining, 99 b/s). Block took 0 ms to download
@400000005ec469dd1e8dd873 Downloading `derp/derpdximv/filefoze.txt' done (99 b/s).
@400000005ec469dd1e8dda04 Downloading `derp/derpdximv/filec.html' at 51103/51103 (0 ms remaining, 106 b/s). Block took 0 ms to download
@400000005ec469dd1e8ddb95 Downloading `derp/derpdximv/filec.html' done (106 b/s).
@400000005ec469dd1e8ddd12 Downloading `derp/derpdximv/fileor.html' at 47548/47548 (0 ms remaining, 98 b/s). Block took 0 ms to download
@400000005ec469dd1e8dde98 Downloading `derp/derpdximv/fileor.html' done (98 b/s).
@400000005ec469dd1e8de065 Downloading `derp/derpdximv/filerq.html' at 46090/46090 (0 ms remaining, 94 b/s). Block took 0 ms to download
@400000005ec469dd1e8de250 Downloading `derp/derpdximv/filerq.html' done (94 b/s).
@400000005ec469dd1e8de3ff Downloading `derp/derpdximv/filejt.txt' at 48187/48187 (0 ms remaining, 98 b/s). Block took 0 ms to download
@400000005ec469dd1e8de59a Downloading `derp/derpdximv/filejt.txt' done (98 b/s).
@400000005ec469dd1e8de702 Downloading `derp/derpdximv/filew.html' at 40570/40570 (0 ms remaining, 82 b/s). Block took 0 ms to download
@400000005ec469dd1e8de9ac Downloading `derp/derpdximv/filew.html' done (82 b/s).
@400000005ec469dd1e8deb14 Downloading `derp/derprrjr/filehrmynp.html' at 51188/51188 (0 ms remaining, 104 b/s). Block took 0 ms to download
@400000005ec469dd1e8dec7d Downloading `derp/derprrjr/filehrmynp.html' done (104 b/s).
@400000005ec469dd1e8dee22 Downloading `derp/derprrjr/filedb.html' at 56392/56392 (0 ms remaining, 114 b/s). Block took 0 ms to download
@400000005ec469dd1e8defb2 Downloading `derp/derprrjr/filedb.html' done (114 b/s).
@400000005ec469dd1e8df14d Downloading `derp/derprrjr/filevhiedj.txt' at 45026/45026 (0 ms remaining, 90 b/s). Block took 0 ms to download
@400000005ec469dd1e8df2c0 Downloading `derp/derprrjr/filevhiedj.txt' done (90 b/s).
@400000005ec469dd1e8e03f8 Downloading `derp/derprrjr/fileyzggjz.html' at 40762/40762 (0 ms remaining, 82 b/s). Block took 0 ms to download
@400000005ec469dd1e8e059d Downloading `derp/derprrjr/fileyzggjz.html' done (82 b/s).
@400000005ec469dd1e8e0710 Downloading `derp/derprrjr/fileof.txt' at 48773/48773 (0 ms remaining, 97 b/s). Block took 0 ms to download
@400000005ec469dd1e8e086e Downloading `derp/derprrjr/fileof.txt' done (97 b/s).
@400000005ec469dd1e8e09d7 Downloading `derp/derprrjr/fileg.txt' at 44224/44224 (0 ms remaining, 88 b/s). Block took 0 ms to download
@400000005ec469dd1e8e0b54 Downloading `derp/derprrjr/fileg.txt' done (88 b/s).
@400000005ec469dd1e8e0cb2 Downloading `derp/derprrjr/filegcprh.txt' at 41262/41262 (0 ms remaining, 82 b/s). Block took 0 ms to download
@400000005ec469dd1e8e0e11 Downloading `derp/derprrjr/filegcprh.txt' done (82 b/s).
@400000005ec469dd1e8e0f66 Downloading `derp/derprrjr/filef.html' at 41587/41587 (0 ms remaining, 82 b/s). Block took 0 ms to download
@400000005ec469dd1e8e10c4 Downloading `derp/derprrjr/filef.html' done (82 b/s).
@400000005ec469dd1e8e122d Downloading `derp/derpqi/filey.html' at 64340/64340 (0 ms remaining, 127 b/s). Block took 0 ms to download
@400000005ec469dd1e8e13aa Downloading `derp/derpqi/filey.html' done (127 b/s).
@400000005ec469dd1e8e1509 Downloading `derp/derpqi/filefql.html' at 58508/58508 (0 ms remaining, 115 b/s). Block took 0 ms to download
@400000005ec469dd1e8e1671 Downloading `derp/derpqi/filefql.html' done (115 b/s).
@400000005ec469dd1e8e17da Downloading `derp/derpqi/fileisq.html' at 51063/51063 (0 ms remaining, 100 b/s). Block took 0 ms to download
@400000005ec469dd1e8e1957 Downloading `derp/derpqi/fileisq.html' done (100 b/s).
@400000005ec469dd1e8e1ab5 Downloading `derp/derpqi/fileiiaair.txt' at 47791/47791 (0 ms remaining, 93 b/s). Block took 0 ms to download
@400000005ec469dd1e8e1c32 Downloading `derp/derpqi/fileiiaair.txt' done (93 b/s).
@400000005ec469dd1e8e1db9 Downloading `derp/derpqi/filegrmz.html' at 47801/47801 (0 ms remaining, 93 b/s). Block took 0 ms to download
@400000005ec469dd1e8e1f21 Downloading `derp/derpqi/filegrmz.html' done (93 b/s).
@400000005ec469dd1e8e2094 Downloading `derp/derpqi/filec.txt' at 41455/41455 (0 ms remaining, 80 b/s). Block took 0 ms to download
@400000005ec469dd1e8e21e9 Downloading `derp/derpqi/filec.txt' done (80 b/s).
@400000005ec469dd1e8e236f Downloading `derp/derpjhmili/filemejlo.txt' at 62653/62653 (0 ms remaining, 121 b/s). Block took 0 ms to download
@400000005ec469dd1e8e2500 Downloading `derp/derpjhmili/filemejlo.txt' done (121 b/s).
@400000005ec469dd1e9ac3bd Downloading `derp/derpjhmStarting download `derp/derpjhmili/filee.html'.
@400000005ec469dd1eb4a1dd Starting download `derp/derpjhmili/fileazrlb.txt'.
@400000005ec469dd1eccb759 Starting download `derp/derpjhmili/fileopl.txt'.
@400000005ec469dd1ee41599 Starting download `derp/derpjhmili/fileqhwknr.txt'.
@400000005ec469dd1ee42b33 Starting download `derp/derptpg/filedxknc.html'.
@400000005ec469dd1f000f4b Starting download `derp/derptpg/filerwr.html'.
@400000005ec469dd1f1b9d2c Starting download `derp/derptpg/filejgzpxd.html'.
@400000005ec469dd1f357288 Starting download `derp/derptpg/filebdasp.html'.
@400000005ec469dd1f4e0540 Starting download `derp/derptpg/filehagg.html'.
@400000005ec469dd1f77b6f5 Starting download `derp/derpmv/filezoa.html'.
@400000005ec469dd1f8fe57d Starting download `derp/derpmv/filefhka.txt'.
@400000005ec469dd1fa7e569 Starting download `derp/derpmv/filepdjrg.html'.
@400000005ec469dd1fbd6e42 Starting download `derp/derpmv/fileurtxv.txt'.
@400000005ec469dd1fe2c5c1 Starting download `derp/derprcuuh/fileptdg.txt'.
@400000005ec469dd1ff90591 Starting download `derp/derprcuuh/filea.txt'.
@400000005ec469dd200f357d Starting download `derp/derprcuuh/filefkhk.html'.
@400000005ec469dd202418e8 Starting download `derp/derprcuuh/fileqn.txt'.
@400000005ec469dd20242b9d Starting download `derp/derpkkjwzj/filepsj.html'.
@400000005ec469dd2034de59 Starting download `derp/derpkkjwzj/filek.html'.
@400000005ec469dd206115af Starting download `derp/derpl/filemdrlb.html'.
@400000005ec469dd207491ad Starting download `derp/derpl/filep.txt'.
@400000005ec469dd20880ef6 Starting download `derp/derpl/fileaufk.txt'.
@400000005ec469dd20aa30df Starting download `derp/derpnaav/fileryr.txt'.
@400000005ec469dd20b7ff44 Starting download `derp/derpnaav/fileqtzbvl.txt'.
@400000005ec469dd20b812b7 Starting download `derp/derpnaav/fileemhn.html'.
@400000005ec469dd20b82bd7 Starting download `derp/derpz/fileemjh.html'.
@400000005ec469dd20ca2860 Starting download `derp/derpz/filevkn.txt'.
@400000005ec469dd20d57391 ili/filegmbfc.txt' at 54451/54451 (0 ms remaining, 105 b/s). Block took 0 ms to download
@400000005ec469dd20d577f3 Downloading `derp/derpjhmili/filegmbfc.txt' done (105 b/s).
@400000005ec469dd20d57998 Downloading `derp/derpjhmili/filee.html' at 52352/52352 (0 ms remaining, 101 b/s). Block took 0 ms to download
@400000005ec469dd20d57b0a Downloading `derp/derpjhmili/filee.html' done (101 b/s).
@400000005ec469dd20d57cb9 Downloading `derp/derpjhmili/fileazrlb.txt' at 46932/46932 (0 ms remaining, 90 b/s). Block took 0 ms to download
@400000005ec469dd20d57e2c Downloading `derp/derpjhmili/fileazrlb.txt' done (90 b/s).
@400000005ec469dd20d57fa9 Downloading `derp/derpjhmili/fileopl.txt' at 40496/40496 (0 ms remaining, 77 b/s). Block took 0 ms to download
@400000005ec469dd20d58125 Downloading `derp/derpjhmili/fileopl.txt' done (77 b/s).
@400000005ec469dd20d582a2 Downloading `derp/derptpg/filedxknc.html' at 64334/64334 (0 ms remaining, 123 b/s). Block took 0 ms to download
@400000005ec469dd20d58429 Downloading `derp/derptpg/filedxknc.html' done (123 b/s).
@400000005ec469dd20d5859c Downloading `derp/derptpg/filerwr.html' at 64574/64574 (0 ms remaining, 123 b/s). Block took 0 ms to download
@400000005ec469dd20d5874a Downloading `derp/derptpg/filerwr.html' done (123 b/s).
@400000005ec469dd20d58917 Downloading `derp/derptpg/filejgzpxd.html' at 52942/52942 (0 ms remaining, 100 b/s). Block took 0 ms to download
@400000005ec469dd20d58abc Downloading `derp/derptpg/filejgzpxd.html' done (100 b/s).
@400000005ec469dd20d58c2f Downloading `derp/derptpg/filebdasp.html' at 46477/46477 (0 ms remaining, 88 b/s). Block took 0 ms to download
@400000005ec469dd20d58d97 Downloading `derp/derptpg/filebdasp.html' done (88 b/s).
@400000005ec469dd20d58ef6 Downloading `derp/derptpg/filehagg.html' at 41557/41557 (0 ms remaining, 78 b/s). Block took 0 ms to download
@400000005ec469dd20d59087 Downloading `derp/derptpg/filehagg.html' done (78 b/s).
@400000005ec469dd20d591ef Downloading `derp/derptpg.gnd' done (3 b/s).
@400000005ec469dd20d5938a Downloading `derp/derpmv/filezoa.html' at 59287/59287 (0 ms remaining, 111 b/s). Block took 0 ms to download
@400000005ec469dd20d594f3 Downloading `derp/derpmv/filezoa.html' done (111 b/s).
@400000005ec469dd20d59684 Downloading `derp/derpmv/filefhka.txt' at 56365/56365 (0 ms remaining, 105 b/s). Block took 0 ms to download
@400000005ec469dd20d59814 Downloading `derp/derpmv/filefhka.txt' done (105 b/s).
@400000005ec469dd20d5999b Downloading `derp/derpmv/filepdjrg.html' at 46225/46225 (0 ms remaining, 86 b/s). Block took 0 ms to download
@400000005ec469dd20d59ae6 Downloading `derp/derpmv/filepdjrg.html' done (86 b/s).
@400000005ec469dd20d59c44 Downloading `derp/derpmv/fileurtxv.txt' at 46311/46311 (0 ms remaining, 86 b/s). Block took 0 ms to download
@400000005ec469dd20d59dad Downloading `derp/derpmv/fileurtxv.txt' done (86 b/s).
@400000005ec469dd20d59f34 Downloading `derp/derpmv.gnd' done (3 b/s).
@400000005ec469dd20d5a0bb Downloading `derp/derprcuuh/fileptdg.txt' at 58277/58277 (0 ms remaining, 108 b/s). Block took 0 ms to download
@400000005ec469dd20d5a22d Downloading `derp/derprcuuh/fileptdg.txt' done (108 b/s).
@400000005ec469dd20d5a396 Downloading `derp/derprcuuh/filea.txt' at 60217/60217 (0 ms remaining, 111 b/s). Block took 0 ms to download
@400000005ec469dd20d5a4eb Downloading `derp/derprcuuh/filea.txt' done (111 b/s).
@400000005ec469dd20d5a635 Downloading `derp/derprcuuh/filefkhk.html' at 49520/49520 (0 ms remaining, 91 b/s). Block took 0 ms to download
@400000005ec469dd20d5a780 Downloading `derp/derprcuuh/filefkhk.html' done (91 b/s).
@400000005ec469dd20d5a8f3 Downloading `derp/derpkkjwzj/filepsj.html' at 48075/48075 (0 ms remaining, 89 b/s). Block took 0 ms to download
@400000005ec469dd20d5aa65 Downloading `derp/derpkkjwzj/filepsj.html' done (89 b/s).
@400000005ec469dd20d5abd8 Downloading `derp/derpkkjwzj/filek.html' at 42762/42762 (0 ms remaining, 79 b/s). Block took 0 ms to download
@400000005ec469dd20d5ad41 Downloading `derp/derpkkjwzj/filek.html' done (79 b/s).
@400000005ec469dd20d5aea9 Downloading `derp/derpkkjwzj.gnd' done (1 b/s).
@400000005ec469dd20d5b01c Downloading `derp/derpl/filemdrlb.html' at 47000/47000 (0 ms remaining, 86 b/s). Block took 0 ms to download
@400000005ec469dd20d5b17b Downloading `derp/derpl/filemdrlb.html' done (86 b/s).
@400000005ec469dd20d5b301 Downloading `derp/derpl/filep.txt' at 50521/50521 (0 ms remaining, 92 b/s). Block took 0 ms to download
@400000005ec469dd20d5b460 Downloading `derp/derpl/filep.txt' done (92 b/s).
@400000005ec469dd20d5b5d3 Downloading `derp/derpl/fileaufk.txt' at 45151/45151 (0 ms remaining, 82 b/s). Block took 0 ms to download
@400000005ec469dd20d5b731 Downloading `derp/derpl/fileaufk.txt' done (82 b/s).
@400000005ec469dd20d5b886 Downloading `derp/derpl.gnd' done (2 b/s).
@400000005ec469dd20d5b9f9 Downloading `derp/derpnaav/fileryr.txt' at 41562/41562 (0 ms remaining, 75 b/s). Block took 0 ms to download
@400000005ec469dd20d5bb61 Downloading `derp/derpnaav/fileryr.txt' done (75 b/s).
@400000005ec469dd20d5bcd4 Downloading `derp/derpz/fileemjh.html' at 52785/52785 (0 ms remaining, 96 b/s). Block took 0 ms to download
@400000005ec469dd20d5be29 Downloading `derp/derpz/fileemjh.html' done (96 b/s).
@400000005ec469dd20d5bfba Downloading `derp/derpz/filevkn.txt' at 43017/43017 (0 ms remaining, 78 b/s). Block took 0 ms to download
@400000005ec469dd20e9fd21 DownloadiStarting download `derp/derpda/filei.html'.
@400000005ec469dd20fd6afe Starting download `derp/derpda/fileqea.txt'.
@400000005ec469dd211e2ccb Starting download `derp/derpqrbn/fileoftjgn.txt'.
@400000005ec469dd213c2600 Starting download `derp/derpwckt/fileweod.html'.
@400000005ec469dd215964ec Starting download `derp/derpohqhc/filerum.html'.
@400000005ec469dd21792051 Starting download `derp/derpc/filecnyhep.html'.
@400000005ec469dd2198670b Starting download `derp/derpws/filemkue.html'.
@400000005ec469dd21b6dd4a Starting download `derp/derpbc/filexm.html'.
@400000005ec469dd21d653ce Starting download `derp/derpaxjv/filewrd.html'.
@400000005ec469dd21d65862 Starting download `derp/derpxjmfn/filehktb.txt'.
@400000005ec46a9103d89815 ng `derp/derpz/filevkn.txt' done (78 b/s).
@400000005ec46a9103d8a18e Downloading `derp/derpz.gnd' done (1 b/s).
@400000005ec46a9103d8a2f7 Downloading `derp/derpda/filei.html' at 60055/60055 (0 ms remaining, 109 b/s). Block took 0 ms to download
@400000005ec46a9103d8a405 Downloading `derp/derpda/filei.html' done (109 b/s).
@400000005ec46a9103d8a514 Downloading `derp/derpda/fileqea.txt' at 47979/47979 (0 ms remaining, 86 b/s). Block took 0 ms to download
@400000005ec46a9103d8a60e Downloading `derp/derpda/fileqea.txt' done (86 b/s).
@400000005ec46a9103d8a712 Downloading `derp/derpda.gnd' done (1 b/s).
@400000005ec46a9103d8a817 Downloading `derp/derpqrbn/fileoftjgn.txt' at 42954/42954 (0 ms remaining, 77 b/s). Block took 0 ms to download
@400000005ec46a9103d8a907 Downloading `derp/derpqrbn/fileoftjgn.txt' done (77 b/s).
@400000005ec46a9103d8a9f8 Downloading `derp/derpqrbn.gnd' done (0 b/s).
@400000005ec46a9103d8aae8 Downloading `derp/derpwckt/fileweod.html' at 41866/41866 (0 ms remaining, 75 b/s). Block took 0 ms to download
@400000005ec46a9103d8abd9 Downloading `derp/derpwckt/fileweod.html' done (75 b/s).
@400000005ec46a9103d8acc9 Downloading `derp/derpwckt.gnd' done (0 b/s).
@400000005ec46a9103d8adc4 Downloading `derp/derpohqhc/filerum.html' at 52484/52484 (0 ms remaining, 94 b/s). Block took 0 ms to download
@400000005ec46a9103d8aeb4 Downloading `derp/derpohqhc/filerum.html' done (94 b/s).
@400000005ec46a9103d8af9b Downloading `derp/derpohqhc.gnd' done (0 b/s).
@400000005ec46a9103d8b09f Downloading `derp/derpc/filecnyhep.html' at 43960/43960 (0 ms remaining, 78 b/s). Block took 0 ms to download
@400000005ec46a9103d8b19a Downloading `derp/derpc/filecnyhep.html' done (78 b/s).
@400000005ec46a9103d8b294 Downloading `derp/derpc.gnd' done (0 b/s).
@400000005ec46a9103d8b384 Downloading `derp/derpws/filemkue.html' at 40514/40514 (0 ms remaining, 72 b/s). Block took 0 ms to download
@400000005ec46a9103d8b475 Downloading `derp/derpws/filemkue.html' done (72 b/s).
@400000005ec46a9103d8b56f Downloading `derp/derpws.gnd' done (0 b/s).
@400000005ec46a9103d8b656 Downloading `derp/derpbc/filexm.html' at 41326/41326 (0 ms remaining, 73 b/s). Block took 0 ms to download
@400000005ec46a9103d8b746 Downloading `derp/derpbc/filexm.html' done (73 b/s).
@400000005ec46a9103d8b82d Downloading `derp/derpbc.gnd' done (0 b/s).
@400000005ec46a9103d8b931 Downloading `derp/derpykdb/fileqg.txt' at 0/78325 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9103d8bc71 Downloading `derp/derproz/filelitd.txt' at 0/73140 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9103d8bdc5 Downloading `derp/derph/fileobysv.txt' at 0/79968 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9103d8bef2 Downloading `derp/derph/fileylm.txt' at 0/75390 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9103d8c00b Downloading `derp/derproz/fileii.html' at 0/69525 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9103d8c123 Downloading `derp/derproz/filekmop.html' at 0/72149 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9103d8c264 Downloading `derp/derproz/filedeoc.html' at 0/65830 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9103d8c9e7 Downloading `derp/derpykdb/filepeqa.txt' at 0/73384 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9103d8cb1e Downloading `derp/derpykdb/fileuj.html' at 0/72394 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9103d8cc54 Downloading `derp/derproz/filevsapgg.txt' at 0/70896 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9103d8cd9f Downloading `derp/derproz/fileiqfzjv.txt' at 0/77864 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9103d8ced6 Downloading `derp/derproz/fileucu.html' at 0/65876 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9103d8d002 Downloading `derp/derpykdb/filedef.txt' at 0/73141 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9103d8d11b Downloading `derp/derpykdb/filehxji.html' at 0/70991 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9103d8d23d Downloading `derp/derph/fileyqnegt.txt' at 0/78500 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9103d8d3b0 Downloading `derp/derpykdb/fileqg.txt' at 12789/78325 (15 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9103d8d50f Downloading `derp/derproz/filelitd.txt' at 7604/73140 (25 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9103d8d61d Downloading `derp/derph/fileobysv.txt' at 14432/79968 (13 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9103d8d740 Downloading `derp/derpykdb/fileuj.html' at 6858/72394 (28 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9103d8d862 Downloading `derp/derproz/fileii.html' at 3989/69525 (49 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9103d8d98f Downloading `derp/derph/fileylm.txt' at 9854/75390 (19 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9103d8dab1 Downloading `derp/derproz/filevsapgg.txt' at 5360/70896 (36 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b28602f Downloading `derp/derpykdb/filedef.txt' at 7605/73141 (25 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b28699e Downloading `derp/derph/fileyqnegt.txt' at 12964/78500 (15 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b286af2 Downloading `derp/derpykdb/filehxji.html' at 5455/70991 (36 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b286c1f Downloading `derp/derpykdb/filepeqa.txt' at 7848/73384 (25 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b286d2e Downloading `derp/derproz/filedeoc.html' at 294/65830 (11 h remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b286ea0 Downloading `derp/derproz/filekmop.html' at 6613/72149 (29 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b286fd7 Downloading `derp/derproz/fileiqfzjv.txt' at 12328/77864 (15 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b2870d1 Downloading `derp/derproz/fileucu.html' at 340/65876 (9 h remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b2871d6 Downloading `derp/derph/fileobysv.txt' at 47200/79968 (125 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b2872c6 Downloading `derp/derph/fileobysv.txt' at 79968/79968 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b2873b7 Downloading `derp/derph/fileobysv.txt' done (0 b/s).
@400000005ec46a910b2874bb Downloading `derp/derpykdb/fileqg.txt' at 45557/78325 (129 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b2875b6 Downloading `derp/derpykdb/fileqg.txt' at 78325/78325 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b28769c Downloading `derp/derpykdb/fileqg.txt' done (0 b/s).
@400000005ec46a910b2877a1 Downloading `derp/derph/filen.html' at 0/67396 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b287887 Downloading `derp/derph/filei.txt' at 0/78992 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b287977 Downloading `derp/derph/filen.html' at 1860/67396 (105 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b287a54 Downloading `derp/derph/filei.txt' at 13456/78992 (14 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b287b3a Downloading `derp/derproz/filevsapgg.txt' at 38128/70896 (154 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b287c21 Downloading `derp/derproz/filevsapgg.txt' at 70896/70896 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b287d11 Downloading `derp/derproz/filevsapgg.txt' done (0 b/s).
@400000005ec46a910b287e16 Downloading `derp/derproz/filelitd.txt' at 40372/73140 (146 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b287efc Downloading `derp/derproz/filelitd.txt' at 73140/73140 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b287fed Downloading `derp/derproz/filelitd.txt' done (0 b/s).
@400000005ec46a910b2880e7 Downloading `derp/derpykdb/fileuj.html' at 39626/72394 (149 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b2881e1 Downloading `derp/derpykdb/fileuj.html' at 72394/72394 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b2882d2 Downloading `derp/derpykdb/fileuj.html' done (0 b/s).
@400000005ec46a910b2883c2 Downloading `derp/derproz/fileii.html' at 36757/69525 (160 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b2884a9 Downloading `derp/derproz/fileii.html' at 69525/69525 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b2885a3 Downloading `derp/derproz/fileii.html' done (0 b/s).
@400000005ec46a910b2886a8 Downloading `derp/derph/fileylm.txt' at 42622/75390 (138 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b28878e Downloading `derp/derph/fileylm.txt' at 75390/75390 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b288875 Downloading `derp/derph/fileylm.txt' done (0 b/s).
@400000005ec46a910b288965 Downloading `derp/derpykdb/filedef.txt' at 40373/73141 (146 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b288a56 Downloading `derp/derpykdb/filedef.txt' at 73141/73141 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b288b50 Downloading `derp/derpykdb/filedef.txt' done (0 b/s).
@400000005ec46a910b288c41 Downloading `derp/derph/fileyqnegt.txt' at 45732/78500 (129 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b288d1d Downloading `derp/derph/fileyqnegt.txt' at 78500/78500 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b288e0d Downloading `derp/derph/fileyqnegt.txt' done (0 b/s).
@400000005ec46a910b288f08 Downloading `derp/derproz/fileiqfzjv.txt' at 45096/77864 (130 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b288ff8 Downloading `derp/derproz/fileiqfzjv.txt' at 77864/77864 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910b2890e9 Downloading `derp/derproz/fileiqfzjv.txt' done (0 b/s).
@400000005ec46a910b2891e3 Downloading `derp/derpykdb/filehxji.html' at 38223/70991 (154 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d06e89c Downloading `derp/derpykdb/filehxji.html' at 70991/70991 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d06f2b5 Downloading `derp/derpykdb/filehxji.html' done (0 b/s).
@400000005ec46a910d06f428 Downloading `derp/derpykdb/filepeqa.txt' at 40616/73384 (145 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d06f55e Downloading `derp/derpykdb/filepeqa.txt' at 73384/73384 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d06f6b3 Downloading `derp/derpykdb/filepeqa.txt' done (0 b/s).
@400000005ec46a910d06f808 Downloading `derp/derpykdb.gnd' done (0 b/s).
@400000005ec46a910d06f93e Downloading `derp/derproz/filedeoc.html' at 33062/65830 (178 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d06fa61 Downloading `derp/derproz/filedeoc.html' at 65830/65830 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d06fb8d Downloading `derp/derproz/filedeoc.html' done (0 b/s).
@400000005ec46a910d06fcce Downloading `derp/derproz/filekmop.html' at 39381/72149 (149 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d06fe04 Downloading `derp/derproz/filekmop.html' at 72149/72149 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d06ff31 Downloading `derp/derproz/filekmop.html' done (0 b/s).
@400000005ec46a910d07005e Downloading `derp/derproz/fileucu.html' at 33108/65876 (178 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d070176 Downloading `derp/derproz/fileucu.html' at 65876/65876 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d0702ad Downloading `derp/derproz/fileucu.html' done (0 b/s).
@400000005ec46a910d0703f7 Downloading `derp/derproz.gnd' done (0 b/s).
@400000005ec46a910d07051a Downloading `derp/derpvy/filehde.html' at 0/66518 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d070650 Downloading `derp/derpatlgx/filesvtmbm.html' at 0/78644 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d0707a5 Downloading `derp/derpatlgx/fileiqh.html' at 0/69129 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d0708e6 Downloading `derp/derpatlgx/fileb.txt' at 0/68333 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d070a12 Downloading `derp/derppjg/filegdfqjn.txt' at 0/67369 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d070b3f Downloading `derp/derppjg/filem.html' at 0/75088 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d070c9d Downloading `derp/derpmpgd/fileabokng.txt' at 0/68759 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d070dc0 Downloading `derp/derpmpgd/fileqmiygk.txt' at 0/67098 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d070eed Downloading `derp/derpvy/filehde.html' at 982/66518 (200 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d07100f Downloading `derp/derpdnuvj/fileydxft.html' at 0/66335 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d071128 Downloading `derp/derpdnuvj/filedyoy.html' at 0/72973 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d07124a Downloading `derp/derpdnuvj/filenslt.html' at 0/67733 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d071363 Downloading `derp/derpatlgx/fileiqh.html' at 3593/69129 (54 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d071485 Downloading `derp/derpmpgd/fileqmiygk.txt' at 1562/67098 (126 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d07159e Downloading `derp/derpmpgd/fileabokng.txt' at 3223/68759 (61 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d0716b6 Downloading `derp/derpmpgd/files.txt' at 0/79976 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d0717d9 Downloading `derp/derpdnuvj/fileq.html' at 0/66485 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d0718e7 Downloading `derp/derpdnuvj/fileydxft.html' at 799/66335 (246 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d071a0a Downloading `derp/derpdnuvj/filenslt.html' at 2197/67733 (89 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d071b22 Downloading `derp/derpatlgx/filesvtmbm.html' at 13108/78644 (15 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d071c45 Downloading `derp/derpatlgx/fileb.txt' at 2797/68333 (70 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d071d54 Downloading `derp/derppjg/filem.html' at 9552/75088 (20 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d071e6c Downloading `derp/derppjg/filegdfqjn.txt' at 1833/67369 (107 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d071f85 Downloading `derp/derpdnuvj/filedyoy.html' at 7437/72973 (26 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a910d072093 Downloading `derp/derpmpgd/files.txt' at 14440/79976 (13 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9116745693 Downloading `derp/derpdnuvj/fileq.html' at 949/66485 (207 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9116745f43 Downloading `derp/derph/filei.txt' at 46224/78992 (127 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911674608e Downloading `derp/derph/filei.txt' at 78992/78992 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a91167461c4 Downloading `derp/derph/filei.txt' done (0 b/s).
@400000005ec46a9116746305 Downloading `derp/derpdximv/filegix.html' at 0/74080 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9116746446 Downloading `derp/derpdximv/filegix.html' at 8544/74080 (23 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a91167465f4 Downloading `derp/derph/filen.html' at 34628/67396 (170 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911674675d Downloading `derp/derph/filen.html' at 67396/67396 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911674689e Downloading `derp/derph/filen.html' done (0 b/s).
@400000005ec46a91167469fc Downloading `derp/derph.gnd' done (0 b/s).
@400000005ec46a9116746b3d Downloading `derp/derprrjr/filele.txt' at 0/74415 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9116746c7d Downloading `derp/derprrjr/filele.txt' at 8879/74415 (22 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9116746db4 Downloading `derp/derpmpgd/fileqmiygk.txt' at 34330/67098 (172 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9116746ed7 Downloading `derp/derpmpgd/fileqmiygk.txt' at 67098/67098 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911674700d Downloading `derp/derpmpgd/fileqmiygk.txt' done (0 b/s).
@400000005ec46a911674713a Downloading `derp/derpatlgx/filesvtmbm.html' at 45876/78644 (128 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911674727a Downloading `derp/derpatlgx/filesvtmbm.html' at 78644/78644 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a91167473a7 Downloading `derp/derpatlgx/filesvtmbm.html' done (0 b/s).
@400000005ec46a91167474de Downloading `derp/derpqi/filex.html' at 0/76467 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9116747600 Downloading `derp/derpjhmili/fileqhwknr.txt' at 0/69648 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911674772d Downloading `derp/derpqi/filex.html' at 10931/76467 (18 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911674786d Downloading `derp/derpjhmili/fileqhwknr.txt' at 4112/69648 (47 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a91167479a4 Downloading `derp/derpdnuvj/fileydxft.html' at 33567/66335 (176 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9116747ad0 Downloading `derp/derpdnuvj/fileydxft.html' at 66335/66335 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9116747bfd Downloading `derp/derpdnuvj/fileydxft.html' done (0 b/s).
@400000005ec46a9116747d2a Downloading `derp/derpatlgx/fileb.txt' at 35565/68333 (166 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9116747e56 Downloading `derp/derpatlgx/fileb.txt' at 68333/68333 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9116747f83 Downloading `derp/derpatlgx/fileb.txt' done (0 b/s).
@400000005ec46a91167480af Downloading `derp/derppjg/filegdfqjn.txt' at 34601/67369 (170 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a91167481dc Downloading `derp/derppjg/filegdfqjn.txt' at 67369/67369 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9116748308 Downloading `derp/derppjg/filegdfqjn.txt' done (0 b/s).
@400000005ec46a9116748449 Downloading `derp/derpdnuvj/fileq.html' at 33717/66485 (175 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911674856c Downloading `derp/derpdnuvj/fileq.html' at 66485/66485 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9116748698 Downloading `derp/derpdnuvj/fileq.html' done (0 b/s).
@400000005ec46a91167487d9 Downloading `derp/derpvy/filehde.html' at 33750/66518 (175 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9116748905 Downloading `derp/derpvy/filehde.html' at 66518/66518 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9116748a32 Downloading `derp/derpvy/filehde.html' done (0 b/s).
@400000005ec46a9116748b68 Downloading `derp/derpvy.gnd' done (0 b/s).
@400000005ec46a9116748c8b Downloading `derp/derpatlgx/fileiqh.html' at 36361/69129 (162 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9116748dad Downloading `derp/derpatlgx/fileiqh.html' at 69129/69129 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a9116748ee4 Downloading `derp/derpatlgx/fileiqh.html' done (0 b/s).
@400000005ec46a9116749011 Downloading `derp/derpatlgx.gnd' done (0 b/s).
@400000005ec46a911674913d Downloading `derp/derpmpgd/fileabokng.txt' at 35991/68759 (164 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a91167492a6 Downloading `derp/derpmpgd/fileabokng.txt' at 68759/68759 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a91167493fb Downloading `derp/derpmpgd/fileabokng.txt' done (0 b/s).
@400000005ec46a911d5c51b7 Downloading `derp/derpdnuvj/filenslt.html' at 34965/67733 (169 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c5a49 Downloading `derp/derpdnuvj/filenslt.html' at 67733/67733 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c5b57 Downloading `derp/derpdnuvj/filenslt.html' done (0 b/s).
@400000005ec46a911d5c5c7a Downloading `derp/derppjg/filem.html' at 42320/75088 (139 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c5d6a Downloading `derp/derppjg/filem.html' at 75088/75088 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c5e65 Downloading `derp/derppjg/filem.html' done (0 b/s).
@400000005ec46a911d5c5f55 Downloading `derp/derppjg.gnd' done (0 b/s).
@400000005ec46a911d5c6046 Downloading `derp/derpdnuvj/filedyoy.html' at 40205/72973 (147 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c612c Downloading `derp/derpdnuvj/filedyoy.html' at 72973/72973 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c621d Downloading `derp/derpdnuvj/filedyoy.html' done (0 b/s).
@400000005ec46a911d5c6317 Downloading `derp/derpdnuvj.gnd' done (0 b/s).
@400000005ec46a911d5c63f4 Downloading `derp/derpmpgd/files.txt' at 47208/79976 (125 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c64da Downloading `derp/derpmpgd/files.txt' at 79976/79976 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c65ca Downloading `derp/derpmpgd/files.txt' done (0 b/s).
@400000005ec46a911d5c66c5 Downloading `derp/derpmpgd.gnd' done (0 b/s).
@400000005ec46a911d5c67a1 Downloading `derp/derprcuuh/fileqn.txt' at 0/65837 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c687e Downloading `derp/derpdximv/filegix.html' at 41312/74080 (143 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c6964 Downloading `derp/derpdximv/filegix.html' at 74080/74080 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c6a55 Downloading `derp/derpdximv/filegix.html' done (0 b/s).
@400000005ec46a911d5c6b45 Downloading `derp/derpdximv.gnd' done (0 b/s).
@400000005ec46a911d5c6c4a Downloading `derp/derpnaav/fileqtzbvl.txt' at 0/73583 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c6d26 Downloading `derp/derpnaav/fileemhn.html' at 0/77815 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c6e20 Downloading `derp/derpaxjv/filewrd.html' at 0/72970 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c6f07 Downloading `derp/derprcuuh/fileqn.txt' at 301/65837 (10 h remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c6fe3 Downloading `derp/derpxjmfn/filehktb.txt' at 0/78801 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c70d4 Downloading `derp/derpnaav/fileemhn.html' at 12279/77815 (16 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c71ba Downloading `derp/derpnaav/fileqtzbvl.txt' at 8047/73583 (24 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c7297 Downloading `derp/derpaxjv/filewrd.html' at 7434/72970 (26 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c7387 Downloading `derp/derpxjmfn/filehktb.txt' at 13265/78801 (14 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c7463 Downloading `derp/derprrjr/filele.txt' at 41647/74415 (141 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c7554 Downloading `derp/derprrjr/filele.txt' at 74415/74415 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c7644 Downloading `derp/derprrjr/filele.txt' done (0 b/s).
@400000005ec46a911d5c7735 Downloading `derp/derprrjr.gnd' done (0 b/s).
@400000005ec46a911d5c781b Downloading `derp/derpqi/filex.html' at 43699/76467 (135 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c7902 Downloading `derp/derpqi/filex.html' at 76467/76467 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c79f2 Downloading `derp/derpqi/filex.html' done (0 b/s).
@400000005ec46a911d5c7ae3 Downloading `derp/derpqi.gnd' done (0 b/s).
@400000005ec46a911d5c7bd3 Downloading `derp/derpjhmili/fileqhwknr.txt' at 36880/69648 (160 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c7cb9 Downloading `derp/derpjhmili/fileqhwknr.txt' at 69648/69648 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c7da0 Downloading `derp/derpjhmili/fileqhwknr.txt' done (0 b/s).
@400000005ec46a911d5c7e90 Downloading `derp/derpjhmili.gnd' done (0 b/s).
@400000005ec46a911d5c7f81 Downloading `derp/derprcuuh/fileqn.txt' at 33069/65837 (178 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c8067 Downloading `derp/derprcuuh/fileqn.txt' at 65837/65837 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c8162 Downloading `derp/derprcuuh/fileqn.txt' done (0 b/s).
@400000005ec46a911d5c8248 Downloading `derp/derprcuuh.gnd' done (0 b/s).
@400000005ec46a911d5c8339 Downloading `derp/derpnaav/fileemhn.html' at 45047/77815 (131 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911d5c843d Downloading `derp/derpnaav/fileemhn.html' at 77815/77815 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911dbf3088 Downloading `derp/derpnaav/fileemhn.html' done (0 b/s).
@400000005ec46a911dbf3b0f Downloading `derp/derpnaav/fileqtzbvl.txt' at 40815/73583 (144 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911dbf3c64 Downloading `derp/derpnaav/fileqtzbvl.txt' at 73583/73583 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911dbf3dae Downloading `derp/derpnaav/fileqtzbvl.txt' done (0 b/s).
@400000005ec46a911dbf3ee5 Downloading `derp/derpnaav.gnd' done (0 b/s).
@400000005ec46a911dbf4011 Downloading `derp/derpaxjv/filewrd.html' at 40202/72970 (147 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911dbf41ac Downloading `derp/derpaxjv/filewrd.html' at 72970/72970 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911dbf4315 Downloading `derp/derpaxjv/filewrd.html' done (0 b/s).
@400000005ec46a911dbf444b Downloading `derp/derpaxjv.gnd' done (0 b/s).
@400000005ec46a911dbf4596 Downloading `derp/derpxjmfn/filehktb.txt' at 46033/78801 (128 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911dbf46c3 Downloading `derp/derpxjmfn/filehktb.txt' at 78801/78801 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec46a911dbf47ef Downloading `derp/derpxjmfn/filehktb.txt' done (0 b/s).
@400000005ec46a911dbf4926 Downloading `derp/derpxjmfn.gnd' done (0 b/s).
@400000005ec46a911dbf4a52 Downloading `derp.gnd' done (0 b/s).
dl.log (88,957 bytes)   

cy1

2020-05-22 04:28

reporter   ~0015939

The website deleted my post, so retyping fast. I just tried again. Randomized file contents this time. Still a 12.9 minute freeze at @400000005ec731e92a82d395 posting logs
make_dumb_directory_tree-3.c (3,167 bytes)   
#include <sys/stat.h> // mkdir

#include <unistd.h> // close
#include <fcntl.h> // open, O_*
#include <string.h> // memcpy
#include <limits.h> // PATH_MAX
#include <stdbool.h>
#include <stdlib.h> // drand48
#include <errno.h>
#include <math.h> //
#include <err.h>
#include <errno.h>

#include <stdio.h> // debugging

/* smallest and largest file sizes, in bytes
 */

struct randstate {
	unsigned short state[3];
};
const struct randstate seed = {{
	42,
	9,
	6
}};

const int smallest_file = 40000;
const int largest_file = 80000;
const double steepness = 128;
const int number_of_subdirs = 29;
const int max_files_per_dir = 40;

double
between(int ymin, int ymax, int xmin, int xmax, double x) {
	/* maps from xmin-xmax to ymin-ymax at x */

	double effective_x = (((double)(x - xmin)) /(xmax-xmin)); /* 0-1 */
	/* bias towards ymax for higher x
	   like before 0.5 -> 0.5, but now 0.5 -> 0.9 and 0.9 to 0.99
	 */
	double result = pow(steepness, effective_x) / steepness;
	return result * (ymax-ymin) + ymin;
}	

int main(int argc, char *argv[])
{
	struct randstate base = seed;

	char path[PATH_MAX];

	const char schars[] = "ashtgyneoiqdrwbjfupzxmcvkl";
	char achar(void) {
		return schars[(int)(erand48(base.state) * (sizeof(schars)-1))];
	}

	int addsuffix(int plen) {
		int suff;
		int top = erand48(base.state)*6 + 1;
		for(suff=0;suff<top;++suff) {
			path[plen+suff] = achar();
		}
		return plen+top;
	}
	system("rm -rf herp");
	memcpy(path, "herp/\0", 6);
	mkdir(path, 0755);
	memcpy(path+5, "derp", 4);
	int plen = 4+5;
	int subdir;
	int save1 = plen;
#ifdef RANDOM_CONTENTS
	struct randstate contents = seed;
#endif	
	for(subdir=0;subdir<number_of_subdirs;++subdir) {
		/* make sure to ignore the null for plen! */
		plen = addsuffix(plen);
		path[plen] = 0;
		mkdir(path, 0755);
		path[plen] = '/'; ++plen;
		
		memcpy(path+plen, "file", 4);
		plen += 4;
		int file;
		int top = between(1,max_files_per_dir,0,number_of_subdirs,subdir);
		printf("%d FILES\n", top);
		int save2 = plen;
		for(file=0;file<top; ++file) {
			plen = addsuffix(plen);
			if(erand48(base.state) < 0.5) {
				path[plen] = '.'; ++plen;
				path[plen] = 'h'; ++plen;
				path[plen] = 't'; ++plen;
				path[plen] = 'm'; ++plen;
				path[plen] = 'l'; ++plen;
			} else {
				path[plen] = '.'; ++plen;
				path[plen] = 't'; ++plen;
				path[plen] = 'x'; ++plen;
				path[plen] = 't'; ++plen;
			}
			path[plen] = 0;
			int out = open(path, O_WRONLY|O_CREAT|O_TRUNC, 0644);
			if(out < 0) {
				write(2, "woops: ", 7);
				const char* err = strerror(errno);
				write(2, err, strlen(err));
				abort();
			}
			int idx;
			int contop = between(smallest_file, largest_file,
								 0, 1, pow(erand48(base.state), 0.5));
			char constr[contop];

			for(idx=0;idx<contop; ++idx) {
				constr[idx] =
#ifdef RANDOM_CONTENTS
					(char)(erand48(contents.state) * 0x100)
					//achar();
#else
					'Q'
#endif
					;
			}
			size_t off = 0;
			for(;;) {
				ssize_t amt = write(out, constr + off, contop - off);
				if(amt < 0) {
					err(errno, "write");
				}
				if(amt == 0) {
					break;
				}
				off += amt;
			}

			close(out);
			plen = save2;
		}
		plen = save1;
	}

    return 0;
}
make_dumb_directory_tree-3.c (3,167 bytes)   
dl2.log (138,999 bytes)   
@400000005ec731e9298f4d57 Starting download `derp.gnd'.
@400000005ec731e929c19e7d Starting download `derp/derpllibc.gnd'.
@400000005ec731e929d3b2b4 Starting download `derp/derpeitomt.gnd'.
@400000005ec731e929e2f34a Starting download `derp/derpicqy.gnd'.
@400000005ec731e929efb3d6 Starting download `derp/derpqup.gnd'.
@400000005ec731e929fb5dd1 Starting download `derp/derpvks.gnd'.
@400000005ec731e92a055c6d Starting download `derp/derpugoyt.gnd'.
@400000005ec731e92a0be974 Starting download `derp/derpk.gnd'.
@400000005ec731e92a11c795 Starting download `derp/derpxy.gnd'.
@400000005ec731e92a1b2dea Starting download `derp/derpm.gnd'.
@400000005ec731e92a23db67 Starting download `derp/derpofjw.gnd'.
@400000005ec731e92a2b98cb Starting download `derp/derpe.gnd'.
@400000005ec731e92a31dc99 Starting download `derp/derpq.gnd'.
@400000005ec731e92a370ecc Starting download `derp/derpvwghqx.gnd'.
@400000005ec731e92a3bf1f2 Starting download `derp/derpjrihd.gnd'.
@400000005ec731e92a4066ec Starting download `derp/derprgqnh.gnd'.
@400000005ec731e92a44c281 Starting download `derp/derpu.gnd'.
@400000005ec731e92a48b03a Starting download `derp/derpsmhhgy.gnd'.
@400000005ec731e92a4ce4b5 Starting download `derp/derpwuk.gnd'.
@400000005ec731e92a50777a Starting download `derp/derpl.gnd'.
@400000005ec731e92a53f260 Starting download `derp/derpqtdndc.gnd'.
@400000005ec731e92a575edf Starting download `derp/derpinqqde.gnd'.
@400000005ec731e92a5ad1d3 Starting download `derp/derpuz.gnd'.
@400000005ec731e92a5de7ac Starting download `derp/derpv.gnd'.
@400000005ec731e92a60ed33 Starting download `derp/derpeg.gnd'.
@400000005ec731e92a63cdbe Starting download `derp/derpwrhrg.gnd'.
@400000005ec731e92a66d418 Starting download `derp/derpjb.gnd'.
@400000005ec731e92a6a0c58 Starting download `derp/derpa.gnd'.
@400000005ec731e92a6ce202 Starting download `derp/derpc.gnd'.
@400000005ec731e92a6fe345 Starting download `derp/derpposqb.gnd'.
@400000005ec731e92a72d956 Starting download `derp/derpllibc/filevtvut.html'.
@400000005ec731e92a72f5b6 Starting download `derp/derpllibc/filecyposk.txt'.
@400000005ec731e92a72fdbc Starting download `derp/derpllibc/filezdxmn.html'.
@400000005ec731e92a730716 Starting download `derp/derpllibc/filetcfwrd.txt'.
@400000005ec731e92a731d6f Starting download `derp/derpllibc/filechhw.txt'.
@400000005ec731e92a7331e7 Starting download `derp/derpllibc/filemkd.html'.
@400000005ec731e92a734605 Starting download `derp/derpllibc/fileqqcy.txt'.
@400000005ec731e92a7359d2 Starting download `derp/derpllibc/filetwk.html'.
@400000005ec731e92a7362b5 Starting download `derp/derpllibc/filephzka.txt'.
@400000005ec731e92a737d98 Starting download `derp/derpllibc/fileghsly.txt'.
@400000005ec731e92a738670 Starting download `derp/derpllibc/filepb.html'.
@400000005ec731e92a7399f7 Starting download `derp/derpllibc/filevbzn.html'.
@400000005ec731e92a73ad25 Starting download `derp/derpllibc/fileqjv.html'.
@400000005ec731e92a73caa7 Starting download `derp/derpllibc/fileevvf.html'.
@400000005ec731e92a73d3ed Starting download `derp/derpllibc/filegz.txt'.
@400000005ec731e92a73ecf9 Starting download `derp/derpllibc/filevi.html'.
@400000005ec731e92a73f762 Starting download `derp/derpllibc/filegy.txt'.
@400000005ec731e92a7409f9 Starting download `derp/derpllibc/filebc.html'.
@400000005ec731e92a742591 Starting download `derp/derpllibc/filegiwmj.txt'.
@400000005ec731e92a742e69 Starting download `derp/derpllibc/filemw.txt'.
@400000005ec731e92a74420e Starting download `derp/derpllibc/filem.txt'.
@400000005ec731e92a7455f0 Starting download `derp/derpllibc/filell.txt'.
@400000005ec731e92a746031 Starting download `derp/derpllibc/filetw.txt'.
@400000005ec731e92a747a23 Starting download `derp/derpllibc/filek.txt'.
@400000005ec731e92a74918b Starting download `derp/derpllibc/filexi.txt'.
@400000005ec731e92a749bae Starting download `derp/derpllibc/filej.txt'.
@400000005ec731e92a74b1c0 Starting download `derp/derpllibc/fileoq.txt'.
@400000005ec731e92a74cfa7 Starting download `derp/derpllibc/filee.txt'.
@400000005ec731e92a74d8f7 Starting download `derp/derpllibc/filez.txt'.
@400000005ec731e92a74ec7f Starting download `derp/derpllibc/fileaw.html'.
@400000005ec731e92a750010 Starting download `derp/derpllibc/filekkj.txt'.
@400000005ec731e92a750866 Starting download `derp/derpllibc/filet.txt'.
@400000005ec731e92a751e51 Starting download `derp/derpllibc/fileg.txt'.
@400000005ec731e92a7531a6 Starting download `derp/derpeitomt/filejjqatq.html'.
@400000005ec731e92a7544c9 Starting download `derp/derpeitomt/filebnqxum.html'.
@400000005ec731e92a755a5a Starting download `derp/derpeitomt/filembhtz.html'.
@400000005ec731e92a756db9 Starting download `derp/derpeitomt/filejzydi.html'.
@400000005ec731e92a7577e6 Starting download `derp/derpeitomt/filenlkls.html'.
@400000005ec731e92a758ca4 Starting download `derp/derpeitomt/filedngcxy.txt'.
@400000005ec731e92a759fa9 Starting download `derp/derpeitomt/fileadhkb.html'.
@400000005ec731e92a75b562 Starting download `derp/derpeitomt/fileaktnus.txt'.
@400000005ec731e92a75c835 Starting download `derp/derpeitomt/fileoqoj.txt'.
@400000005ec731e92a75daa3 Starting download `derp/derpeitomt/filewtzs.txt'.
@400000005ec731e92a75ed63 Starting download `derp/derpeitomt/filelzucs.txt'.
@400000005ec731e92a7600e0 Starting download `derp/derpeitomt/filestdh.html'.
@400000005ec731e92a76199c Starting download `derp/derpeitomt/filevqxcw.txt'.
@400000005ec731e92a763171 Starting download `derp/derpeitomt/filexzo.html'.
@400000005ec731e92a764495 Starting download `derp/derpeitomt/filewzg.html'.
@400000005ec731e92a7657fe Starting download `derp/derpeitomt/filelwb.html'.
@400000005ec731e92a766b3f Starting download `derp/derpeitomt/filevfuv.txt'.
@400000005ec731e92a767d4a Starting download `derp/derpeitomt/filery.txt'.
@400000005ec731e92a768feb Starting download `derp/derpeitomt/filenpi.html'.
@400000005ec731e92a76a5fe Starting download `derp/derpeitomt/fileu.html'.
@400000005ec731e92a76b9b7 Starting download `derp/derpeitomt/filebh.txt'.
@400000005ec731e92a76cbfe Starting download `derp/derpeitomt/filea.html'.
@400000005ec731e92a76de8b Starting download `derp/derpeitomt/fileb.html'.
@400000005ec731e92a76f15e Starting download `derp/derpeitomt/fileemu.txt'.
@400000005ec731e92a77041d Starting download `derp/derpeitomt/filejtb.txt'.
@400000005ec731e92a77193f Starting download `derp/derpeitomt/filetl.txt'.
@400000005ec731e92a772c4e Starting download `derp/derpeitomt/fileoh.txt'.
@400000005ec731e92a7735b3 Starting download `derp/derpeitomt/fileb.txt'.
@400000005ec731e92a774b6b Starting download `derp/derpicqy/filebbvnjn.html'.
@400000005ec731e92a775e71 Starting download `derp/derpicqy/fileqwixnk.html'.
@400000005ec731e92a77719e Starting download `derp/derpicqy/filebbfool.txt'.
@400000005ec731e92a778684 Starting download `derp/derpicqy/fileggjwee.txt'.
@400000005ec731e92a7798ad Starting download `derp/derpicqy/filerzzuro.html'.
@400000005ec731e92a77aacb Starting download `derp/derpicqy/fileytdv.txt'.
@400000005ec731e92a77bea3 Starting download `derp/derpicqy/filezben.txt'.
@400000005ec731e92a77d1c6 Starting download `derp/derpicqy/filecz.html'.
@400000005ec731e92a77e3b3 Starting download `derp/derpicqy/filefop.html'.
@400000005ec731e92a77faca Starting download `derp/derpicqy/filekjx.html'.
@400000005ec731e92a780e5b Starting download `derp/derpicqy/fileqg.html'.
@400000005ec731e92a7820ca Starting download `derp/derpicqy/filebi.html'.
@400000005ec731e92a78336b Starting download `derp/derpicqy/filecx.html'.
@400000005ec731e92a7846d5 Starting download `derp/derpicqy/filefavi.html'.
@400000005ec731e92a785c83 Starting download `derp/derpicqy/fileyzdxp.txt'.
@400000005ec731e92a786f2e Starting download `derp/derpicqy/filek.html'.
@400000005ec731e92a7881e3 Starting download `derp/derpicqy/filedriju.txt'.
@400000005ec731e92a7894ca Starting download `derp/derpicqy/fileqk.txt'.
@400000005ec731e92a78a789 Starting download `derp/derpicqy/fileb.txt'.
@400000005ec731e92a78bb89 Starting download `derp/derpicqy/fileu.txt'.
@400000005ec731e92a78c461 Starting download `derp/derpicqy/filel.txt'.
@400000005ec731e92a78df44 Starting download `derp/derpicqy/filexg.html'.
@400000005ec731e92a78f36c Starting download `derp/derpqup/fileoltaky.html'.
@400000005ec731e92a7906fd Starting download `derp/derpqup/filefzawkj.txt'.
@400000005ec731e92a7919d0 Starting download `derp/derpqup/fileydmgx.html'.
@400000005ec731e92a792cfe Starting download `derp/derpqup/filetqcmx.html'.
@400000005ec731e92a794176 Starting download `derp/derpqup/filekhcyx.html'.
@400000005ec731e92a795589 Starting download `derp/derpqup/filewvhpo.html'.
@400000005ec731e92a795f34 Starting download `derp/derpqup/fileqhloz.html'.
@400000005ec731e92a797456 Starting download `derp/derpqup/filejrts.html'.
@400000005ec731e92a797e47 Starting download `derp/derpqup/fileunc.txt'.
@400000005ec731e92a79937d Starting download `derp/derpqup/fileoskx.txt'.
@400000005ec731e92a79ae9c Starting download `derp/derpqup/filegsoga.txt'.
@400000005ec731e92a79d583 Starting download `derp/derpqup/filewchs.html'.
@400000005ec731e92a79e9e7 Starting download `derp/derpqup/fileiiwp.html'.
@400000005ec731e92a79fddc Starting download `derp/derpqup/filea.html'.
@400000005ec731e92a7a1100 Starting download `derp/derpqup/fileflgs.html'.
@400000005ec731e92a7a1a46 Starting download `derp/derpqup/filedfvcb.txt'.
@400000005ec731e92a7a3583 Starting download `derp/derpqup/filek.html'.
@400000005ec731e92a7a493d Starting download `derp/derpqup/fileti.txt'.
@400000005ec731e92a7a5b98 Starting download `derp/derpqup/filevx.txt'.
@400000005ec731e92a7a6d70 Starting download `derp/derpqup/filelj.txt'.
@400000005ec731e92a7a8043 Starting download `derp/derpvks/filemysdae.txt'.
@400000005ec731e92a7a929e Starting download `derp/derpvks/filersfhuj.html'.
@400000005ec731e92a7aa78e Starting download `derp/derpvks/filerzylj.html'.
@400000005ec731e92a7aba43 Starting download `derp/derpvks/fileaztv.html'.
@400000005ec731e92a7accbc Starting download `derp/derpvks/filezknc.html'.
@400000005ec731e92a7adeef Starting download `derp/derpvks/filebl.html'.
@400000005ec731e92a7af136 Starting download `derp/derpvks/filea.html'.
@400000005ec731e92a7b0630 Starting download `derp/derpvks/fileyyf.txt'.
@400000005ec731e92a7b1953 Starting download `derp/derpvks/filexrejn.txt'.
@400000005ec731e92a7b2c12 Starting download `derp/derpvks/filebhpt.html'.
@400000005ec731e92a7b35ef Starting download `derp/derpvks/filegqmjo.txt'.
@400000005ec731e92a7b49f9 Starting download `derp/derpvks/filef.txt'.
@400000005ec731e92a7b5ce0 Starting download `derp/derpvks/filedi.txt'.
@400000005ec731e92a7b72ac Starting download `derp/derpvks/filei.txt'.
@400000005ec731e92a7b85ee Starting download `derp/derpvks/filekn.txt'.
@400000005ec731e92a7b9866 Starting download `derp/derpvks/fileg.txt'.
@400000005ec731e92a7bab26 Starting download `derp/derpugoyt/fileirpwxf.txt'.
@400000005ec731e92a7bbd9e Starting download `derp/derpugoyt/filehmlf.txt'.
@400000005ec731e92a7bc771 Starting download `derp/derpugoyt/fileqbhd.txt'.
@400000005ec731e92a7be27c Starting download `derp/derpugoyt/filexgdwsu.html'.
@400000005ec731e92a7bf67c Starting download `derp/derpugoyt/filegsb.html'.
@400000005ec731e92a7bff68 Starting download `derp/derpugoyt/fileup.html'.
@400000005ec731e92a7c148a Starting download `derp/derpugoyt/filemkl.html'.
@400000005ec731e92a7c27f4 Starting download `derp/derpugoyt/filezl.txt'.
@400000005ec731e92a7c3abd Starting download `derp/derpugoyt/filecj.txt'.
@400000005ec731e92a7c501b Starting download `derp/derpk/fileiyvpun.html'.
@400000005ec731e92a7c6348 Starting download `derp/derpk/fileiicgv.html'.
@400000005ec731e92a7c6ce9 Starting download `derp/derpk/fileyfl.html'.
@400000005ec731e92a7c81c5 Starting download `derp/derpk/filecoy.html'.
@400000005ec731e92a7c954c Starting download `derp/derpk/filev.html'.
@400000005ec731e92a7caa8d Starting download `derp/derpk/fileiwt.txt'.
@400000005ec731e92a7cbdd8 Starting download `derp/derpk/filequom.txt'.
@400000005ec731e92a7cd001 Starting download `derp/derpxy/filezeukcj.txt'.
@400000005ec731e92a7ce248 Starting download `derp/derpxy/filexzhyih.txt'.
@400000005ec731e92a7cec2e Starting download `derp/derpxy/fileculn.txt'.
@400000005ec731e92a7d0151 Starting download `derp/derpxy/filejkt.html'.
@400000005ec731e92a7d1713 Starting download `derp/derpxy/filewzizf.html'.
@400000005ec731e92a7d214a Starting download `derp/derpxy/filekschj.txt'.
@400000005ec731e92a7d3608 Starting download `derp/derpxy/filegoi.html'.
@400000005ec731e92a7d4985 Starting download `derp/derpxy/filecvqez.txt'.
@400000005ec731e92a7d5bb8 Starting download `derp/derpxy/filebcczb.txt'.
@400000005ec731e92a7d7026 Starting download `derp/derpxy/filettuohe.txt'.
@400000005ec731e92a7d83ad Starting download `derp/derpxy/filehy.html'.
@400000005ec731e92a7d977b Starting download `derp/derpxy/filebcz.txt'.
@400000005ec731e92a7da895 Starting download `derp/derpxy/files.html'.
@400000005ec731e92a7dba8c Starting download `derp/derpxy/fileorbh.txt'.
@400000005ec731e92a7dc49b Starting download `derp/derpxy/fileqp.txt'.
@400000005ec731e92a7dde3d Starting download `derp/derpm/fileovmpjw.txt'.
@400000005ec731e92a7df247 Starting download `derp/derpm/fileplsjny.txt'.
@400000005ec731e92a7dfba1 Starting download `derp/derpm/filebatc.txt'.
@400000005ec731e92a7e0f6f Starting download `derp/derpm/filedxbxjr.html'.
@400000005ec731e92a7e21fc Starting download `derp/derpm/fileqtsq.txt'.
@400000005ec731e92a7e34bb Starting download `derp/derpm/filejujd.html'.
@400000005ec731e92a7e4d3b Starting download `derp/derpm/filebdo.html'.
@400000005ec731e92a7e56e5 Starting download `derp/derpm/filebleg.txt'.
@400000005ec731e92a7e6b21 Starting download `derp/derpm/fileohe.txt'.
@400000005ec731e92a7e7ef9 Starting download `derp/derpm/filem.txt'.
@400000005ec731e92a7e91a4 Starting download `derp/derpm/files.txt'.
@400000005ec731e92a7ea78e Starting download `derp/derpm/fileix.txt'.
@400000005ec731e92a7ebbc0 Starting download `derp/derpm/filebb.txt'.
@400000005ec731e92a7ec4f2 Starting download `derp/derpofjw/fileizenqh.txt'.
@400000005ec731e92a7edaa1 Starting download `derp/derpofjw/filefsxsee.txt'.
@400000005ec731e92a7ee4ce Starting download `derp/derpofjw/filezcxo.txt'.
@400000005ec731e92a7ef900 Starting download `derp/derpofjw/fileynfko.txt'.
@400000005ec731e92a7f0f8a Starting download `derp/derpofjw/filerbf.txt'.
@400000005ec731e92a7f197b Starting download `derp/derpofjw/filemvv.html'.
@400000005ec731e92a7f2e4d Starting download `derp/derpofjw/fileb.html'.
@400000005ec731e92a7f387a Starting download `derp/derpofjw/filexk.txt'.
@400000005ec731e92a7f4dce Starting download `derp/derpofjw/filed.txt'.
@400000005ec731e92a7f6337 Starting download `derp/derpofjw/fileahwn.html'.
@400000005ec731e92a7f76b4 Starting download `derp/derpofjw/filea.txt'.
@400000005ec731e92a7f8041 Starting download `derp/derpe/filezmfa.txt'.
@400000005ec731e92a7f9563 Starting download `derp/derpe/filegrdolq.html'.
@400000005ec731e92a7f9fa4 Starting download `derp/derpe/filevdax.txt'.
@400000005ec731e92a7fc098 Starting download `derp/derpe/filelxj.txt'.
@400000005ec731e92a7fd0fe Starting download `derp/derpe/filepajq.html'.
@400000005ec731e92a7fd8a9 Starting download `derp/derpe/filerus.txt'.
@400000005ec731e92a7fedb8 Starting download `derp/derpe/filejei.txt'.
@400000005ec731e92a7ff7ef Starting download `derp/derpe/filevrh.txt'.
@400000005ec731e92a800ded Starting download `derp/derpq/filejyeot.html'.
@400000005ec731e92a803e6b Starting download `derp/derpq/fileavhtw.txt'.
@400000005ec731e92a804be1 Starting download `derp/derpq/filed.html'.
@400000005ec731e92a805dec Starting download `derp/derpq/filerxw.txt'.
@400000005ec731e92a807123 Starting download `derp/derpq/filettzj.txt'.
@400000005ec731e92a8079b5 Starting download `derp/derpq/fileouko.txt'.
@400000005ec731e92a808e73 Starting download `derp/derpvwghqx/filesxexdd.txt'.
@400000005ec731e92a80a3d1 Starting download `derp/derpvwghqx/filexpx.txt'.
@400000005ec731e92a80b930 Starting download `derp/derpvwghqx/filewed.html'.
@400000005ec731e92a80c226 Starting download `derp/derpvwghqx/filewvca.html'.
@400000005ec731e92a80d5b8 Starting download `derp/derpvwghqx/fileqj.txt'.
@400000005ec731e92a80de4a Starting download `derp/derpjrihd/fileebqixz.html'.
@400000005ec731e92a80f8c8 Starting download `derp/derpjrihd/fileyj.txt'.
@400000005ec731e92a81031d Starting download `derp/derpjrihd/fileh.txt'.
@400000005ec731e92a81198a Starting download `derp/derpjrihd/filecdp.txt'.
@400000005ec731e92a812439 Starting download `derp/derprgqnh/fileiwndlm.html'.
@400000005ec731e92a813857 Starting download `derp/derprgqnh/filecuost.html'.
@400000005ec731e92a814ced Starting download `derp/derprgqnh/fileyfh.txt'.
@400000005ec731e92a8160f7 Starting download `derp/derprgqnh/filef.txt'.
@400000005ec731e92a816a29 Starting download `derp/derpu/filerexcel.txt'.
@400000005ec731e92a817eb5 Starting download `derp/derpu/fileijnqcg.txt'.
@400000005ec731e92a819214 Starting download `derp/derpu/filejvpegj.html'.
@400000005ec731e92a819b51 Starting download `derp/derpsmhhgy/filezgpl.txt'.
@400000005ec731e92a81b5bc Starting download `derp/derpsmhhgy/filevxkc.txt'.
@400000005ec731e92a81bf5c Starting download `derp/derpsmhhgy/fileepb.html'.
@400000005ec731e92a81d410 Starting download `derp/derpwuk/fileaup.html'.
@400000005ec731e92a81e770 Starting download `derp/derpwuk/filep.txt'.
@400000005ec731e92a81efb2 Starting download `derp/derpl/filevy.html'.
@400000005ec731e92a82095e Starting download `derp/derpl/filep.txt'.
@400000005ec731e92a821761 Starting download `derp/derpqtdndc/filef.html'.
@400000005ec731e92a822a52 Starting download `derp/derpqtdndc/fileonuk.html'.
@400000005ec731e92a823461 Starting download `derp/derpinqqde/filehhsko.html'.
@400000005ec731e92a8248ed Starting download `derp/derpinqqde/filery.html'.
@400000005ec731e92a825b84 Starting download `derp/derpuz/filepeqi.txt'.
@400000005ec731e92a827074 Starting download `derp/derpv/fileeku.txt'.
@400000005ec731e92a82829c Starting download `derp/derpeg/filemdhsei.txt'.
@400000005ec731e92a828c33 Starting download `derp/derpwrhrg/filecayl.txt'.
@400000005ec731e92a82a0d3 Starting download `derp/derpjb/filejcfs.txt'.
@400000005ec731e92a82b388 Starting download `derp/derpa/filezxadu.html'.
@400000005ec731e92a82ca77 Starting download `derp/derpc/fileejgazd.txt'.
@400000005ec731e92a82d395 Starting download `derp/derpposqb/fileq.html'.
@400000005ec7329d2fb62b70 Downloading `derp.gnd' at 0/68551 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d2fb638d2 Downloading `derp.gnd' at 3015/68551 (18 ms remaining, 3610 b/s). Block took 0 ms to download
@400000005ec7329d2fb63a59 Downloading `derp.gnd' at 35783/68551 (1102 µs remaining, 28 KiB/s). Block took 0 ms to download
@400000005ec7329d2fb63bae Downloading `derp.gnd' at 68551/68551 (0 ms remaining, 32 KiB/s). Block took 0 ms to download
@400000005ec7329d2fb63d0c Downloading `derp/derpllibc.gnd' at 11456/11456 (0 ms remaining, 5 KiB/s). Block took 0 ms to download
@400000005ec7329d2fb63e43 Downloading `derp/derpeitomt.gnd' at 9775/9775 (0 ms remaining, 3253 b/s). Block took 0 ms to download
@400000005ec7329d2fb63f98 Downloading `derp/derpicqy.gnd' at 7687/7687 (0 ms remaining, 1967 b/s). Block took 0 ms to download
@400000005ec7329d2fb640f6 Downloading `derp/derpqup.gnd' at 7011/7011 (0 ms remaining, 1508 b/s). Block took 0 ms to download
@400000005ec7329d2fb64241 Downloading `derp/derpvks.gnd' at 5611/5611 (0 ms remaining, 1051 b/s). Block took 0 ms to download
@400000005ec7329d2fb643c8 Downloading `derp/derpugoyt.gnd' at 3221/3221 (0 ms remaining, 544 b/s). Block took 0 ms to download
@400000005ec7329d2fb6451c Downloading `derp/derpk.gnd' at 2526/2526 (0 ms remaining, 428 b/s). Block took 0 ms to download
@400000005ec7329d2fb6465d Downloading `derp/derpxy.gnd' at 5284/5284 (0 ms remaining, 845 b/s). Block took 0 ms to download
@400000005ec7329d2fb64793 Downloading `derp/derpm.gnd' at 4587/4587 (0 ms remaining, 674 b/s). Block took 0 ms to download
@400000005ec7329d2fb648e8 Downloading `derp/derpofjw.gnd' at 3902/3902 (0 ms remaining, 534 b/s). Block took 0 ms to download
@400000005ec7329d2fb64a47 Downloading `derp/derpe.gnd' at 2870/2870 (0 ms remaining, 370 b/s). Block took 0 ms to download
@400000005ec7329d2fb64b9b Downloading `derp/derpq.gnd' at 2181/2181 (0 ms remaining, 269 b/s). Block took 0 ms to download
@400000005ec7329d2fb64cf0 Downloading `derp/derpvwghqx.gnd' at 1839/1839 (0 ms remaining, 219 b/s). Block took 0 ms to download
@400000005ec7329d2fb64e45 Downloading `derp/derpjrihd.gnd' at 1494/1494 (0 ms remaining, 172 b/s). Block took 0 ms to download
@400000005ec7329d2fb64fad Downloading `derp/derprgqnh.gnd' at 1504/1504 (0 ms remaining, 168 b/s). Block took 0 ms to download
@400000005ec7329d2fb650f8 Downloading `derp/derpu.gnd' at 1159/1159 (0 ms remaining, 126 b/s). Block took 0 ms to download
@400000005ec7329d2fb65261 Downloading `derp/derpsmhhgy.gnd' at 1158/1158 (0 ms remaining, 123 b/s). Block took 0 ms to download
@400000005ec7329d2fb65397 Downloading `derp/derpwuk.gnd' at 803/803 (0 ms remaining, 83 b/s). Block took 0 ms to download
@400000005ec7329d2fb6550a Downloading `derp/derpl.gnd' at 802/802 (0 ms remaining, 81 b/s). Block took 0 ms to download
@400000005ec7329d2fb65687 Downloading `derp/derpqtdndc.gnd' at 808/808 (0 ms remaining, 80 b/s). Block took 0 ms to download
@400000005ec7329d2fb657d1 Downloading `derp/derpinqqde.gnd' at 813/813 (0 ms remaining, 79 b/s). Block took 0 ms to download
@400000005ec7329d2fb65930 Downloading `derp/derpuz.gnd' at 461/461 (0 ms remaining, 44 b/s). Block took 0 ms to download
@400000005ec7329d2fb65a99 Downloading `derp/derpv.gnd' at 459/459 (0 ms remaining, 43 b/s). Block took 0 ms to download
@400000005ec7329d2fb65c01 Downloading `derp/derpeg.gnd' at 466/466 (0 ms remaining, 43 b/s). Block took 0 ms to download
@400000005ec7329d2fb65d4c Downloading `derp/derpwrhrg.gnd' at 466/466 (0 ms remaining, 42 b/s). Block took 0 ms to download
@400000005ec7329d2fb65e97 Downloading `derp/derpjb.gnd' at 464/464 (0 ms remaining, 41 b/s). Block took 0 ms to download
@400000005ec7329d2fb65feb Downloading `derp/derpa.gnd' at 465/465 (0 ms remaining, 41 b/s). Block took 0 ms to download
@400000005ec7329d2fb66172 Downloading `derp/derpc.gnd' at 465/465 (0 ms remaining, 40 b/s). Block took 0 ms to download
@400000005ec7329d2fb662c7 Downloading `derp/derpposqb.gnd' at 463/463 (0 ms remaining, 40 b/s). Block took 0 ms to download
@400000005ec7329d2fb66461 Downloading `derp/derpllibc/filevtvut.html' at 0/52566 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d2fb665ac Downloading `derp/derpllibc/filecyposk.txt' at 0/52245 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d2fb666f7 Downloading `derp/derpllibc/filevtvut.html' at 19798/52566 (298 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d2fb66841 Downloading `derp/derpllibc/filevtvut.html' at 52566/52566 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d2fb669b4 Downloading `derp/derpllibc/filevtvut.html' done (0 b/s).
@400000005ec7329d2fb66b1d Downloading `derp/derpllibc/filecyposk.txt' at 19477/52245 (5 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d2fb66c8f Downloading `derp/derpllibc/filezdxmn.html' at 0/56138 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d2fb66df8 Downloading `derp/derpllibc/filecyposk.txt' at 52245/52245 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c699cc Downloading `derp/derpllibc/filecyposk.txt' done (0 b/s).
@400000005ec7329d30c6a52f Downloading `derp/derpllibc/filezdxmn.html' at 23370/56138 (252 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6a6c0 Downloading `derp/derpllibc/filetcfwrd.txt' at 0/41214 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6a80b Downloading `derp/derpllibc/filezdxmn.html' at 56138/56138 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6a973 Downloading `derp/derpllibc/filezdxmn.html' done (0 b/s).
@400000005ec7329d30c6aadc Downloading `derp/derpllibc/filetcfwrd.txt' at 8446/41214 (11 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6ac8b Downloading `derp/derpllibc/filechhw.txt' at 0/40656 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6ae08 Downloading `derp/derpllibc/filetcfwrd.txt' at 41214/41214 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6afac Downloading `derp/derpllibc/filetcfwrd.txt' done (0 b/s).
@400000005ec7329d30c6b13d Downloading `derp/derpllibc/filemkd.html' at 0/79351 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6b2e2 Downloading `derp/derpllibc/filechhw.txt' at 7888/40656 (12 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6b455 Downloading `derp/derpllibc/filechhw.txt' at 40656/40656 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6b5d1 Downloading `derp/derpllibc/filechhw.txt' done (0 b/s).
@400000005ec7329d30c6b780 Downloading `derp/derpllibc/filemkd.html' at 13815/79351 (14 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6b8d5 Downloading `derp/derpllibc/filemkd.html' at 46583/79351 (126 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6ba29 Downloading `derp/derpllibc/filemkd.html' at 79351/79351 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6bb9c Downloading `derp/derpllibc/filemkd.html' done (0 b/s).
@400000005ec7329d30c6bdeb Downloading `derp/derpllibc/fileqqcy.txt' at 0/71255 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6bf68 Downloading `derp/derpllibc/filetwk.html' at 0/51653 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6c0bd Downloading `derp/derpllibc/fileqqcy.txt' at 5719/71255 (34 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6c21b Downloading `derp/derpllibc/fileqqcy.txt' at 38487/71255 (153 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6c37a Downloading `derp/derpllibc/filetwk.html' at 18885/51653 (5 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6c4ed Downloading `derp/derpllibc/fileqqcy.txt' at 71255/71255 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6c669 Downloading `derp/derpllibc/fileqqcy.txt' done (0 b/s).
@400000005ec7329d30c6c7b4 Downloading `derp/derpllibc/filetwk.html' at 51653/51653 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6c963 Downloading `derp/derpllibc/filetwk.html' done (0 b/s).
@400000005ec7329d30c6cacb Downloading `derp/derpllibc/filephzka.txt' at 0/52805 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6cd7f Downloading `derp/derpllibc/fileghsly.txt' at 0/78944 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6cefb Downloading `derp/derpllibc/filephzka.txt' at 20037/52805 (294 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6d082 Downloading `derp/derpllibc/filephzka.txt' at 52805/52805 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6d1ff Downloading `derp/derpllibc/filephzka.txt' done (0 b/s).
@400000005ec7329d30c6d37c Downloading `derp/derpllibc/fileghsly.txt' at 13408/78944 (14 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6d4ee Downloading `derp/derpllibc/filepb.html' at 0/42961 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6d66b Downloading `derp/derpllibc/fileghsly.txt' at 46176/78944 (127 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6d7de Downloading `derp/derpllibc/fileghsly.txt' at 78944/78944 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6d950 Downloading `derp/derpllibc/fileghsly.txt' done (0 b/s).
@400000005ec7329d30c6dab9 Downloading `derp/derpllibc/filepb.html' at 10193/42961 (9 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6dc22 Downloading `derp/derpllibc/filevbzn.html' at 0/44796 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6dd9f Downloading `derp/derpllibc/filepb.html' at 42961/42961 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6df11 Downloading `derp/derpllibc/filepb.html' done (0 b/s).
@400000005ec7329d30c6e070 Downloading `derp/derpllibc/filevbzn.html' at 12028/44796 (8 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d30c6e1f7 Downloading `derp/derpllibc/fileqjv.html' at 0/42148 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c301e5 Downloading `derp/derpllibc/filevbzn.html' at 44796/44796 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c30bf4 Downloading `derp/derpllibc/filevbzn.html' done (0 b/s).
@400000005ec7329d31c30d2a Downloading `derp/derpllibc/fileqjv.html' at 9380/42148 (10 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c30e2f Downloading `derp/derpllibc/fileevvf.html' at 0/61825 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c30f0b Downloading `derp/derpllibc/fileqjv.html' at 42148/42148 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c30ffc Downloading `derp/derpllibc/fileqjv.html' done (0 b/s).
@400000005ec7329d31c310e2 Downloading `derp/derpllibc/fileevvf.html' at 29057/61825 (203 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c311c8 Downloading `derp/derpllibc/filegz.txt' at 0/76059 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c312af Downloading `derp/derpllibc/fileevvf.html' at 61825/61825 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c31395 Downloading `derp/derpllibc/fileevvf.html' done (0 b/s).
@400000005ec7329d31c31472 Downloading `derp/derpllibc/filegz.txt' at 10523/76059 (18 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c31558 Downloading `derp/derpllibc/filevi.html' at 0/57617 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c31635 Downloading `derp/derpllibc/filegz.txt' at 43291/76059 (136 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c31725 Downloading `derp/derpllibc/filegz.txt' at 76059/76059 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c31816 Downloading `derp/derpllibc/filegz.txt' done (0 b/s).
@400000005ec7329d31c318fc Downloading `derp/derpllibc/filevi.html' at 24849/57617 (237 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c319e2 Downloading `derp/derpllibc/filevi.html' at 57617/57617 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c31add Downloading `derp/derpllibc/filevi.html' done (0 b/s).
@400000005ec7329d31c31bb9 Downloading `derp/derpllibc/filegy.txt' at 0/41046 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c31ca0 Downloading `derp/derpllibc/filebc.html' at 0/65655 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c31d86 Downloading `derp/derpllibc/filegy.txt' at 8278/41046 (11 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c31e63 Downloading `derp/derpllibc/filegy.txt' at 41046/41046 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c31f53 Downloading `derp/derpllibc/filegy.txt' done (0 b/s).
@400000005ec7329d31c32043 Downloading `derp/derpllibc/filebc.html' at 119/65655 (27 h remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c32120 Downloading `derp/derpllibc/filebc.html' at 32887/65655 (179 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c32206 Downloading `derp/derpllibc/filebc.html' at 65655/65655 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c322f7 Downloading `derp/derpllibc/filebc.html' done (0 b/s).
@400000005ec7329d31c323d3 Downloading `derp/derpllibc/filegiwmj.txt' at 0/79767 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c324ba Downloading `derp/derpllibc/filemw.txt' at 0/41256 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c325a0 Downloading `derp/derpllibc/filegiwmj.txt' at 14231/79767 (13 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c3267c Downloading `derp/derpllibc/filemw.txt' at 8488/41256 (11 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c32759 Downloading `derp/derpllibc/filegiwmj.txt' at 46999/79767 (125 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c3283f Downloading `derp/derpllibc/filegiwmj.txt' at 79767/79767 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c32930 Downloading `derp/derpllibc/filegiwmj.txt' done (0 b/s).
@400000005ec7329d31c32a34 Downloading `derp/derpllibc/filemw.txt' at 41256/41256 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c32b39 Downloading `derp/derpllibc/filemw.txt' done (0 b/s).
@400000005ec7329d31c32c29 Downloading `derp/derpllibc/filem.txt' at 0/41234 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c32d10 Downloading `derp/derpllibc/filell.txt' at 0/40943 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c32e0a Downloading `derp/derpllibc/filem.txt' at 8466/41234 (11 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c32ee7 Downloading `derp/derpllibc/filem.txt' at 41234/41234 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d31c32fcd Downloading `derp/derpllibc/filem.txt' done (0 b/s).
@400000005ec7329d31c330bd Downloading `derp/derpllibc/filell.txt' at 8175/40943 (12 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e400b4 Downloading `derp/derpllibc/filetw.txt' at 0/61796 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e40aeb Downloading `derp/derpllibc/filell.txt' at 40943/40943 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e40c36 Downloading `derp/derpllibc/filell.txt' done (0 b/s).
@400000005ec7329d32e40d3a Downloading `derp/derpllibc/filetw.txt' at 29028/61796 (203 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e40e53 Downloading `derp/derpllibc/filek.txt' at 0/40738 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e40f4d Downloading `derp/derpllibc/filetw.txt' at 61796/61796 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e410a2 Downloading `derp/derpllibc/filetw.txt' done (0 b/s).
@400000005ec7329d32e411c5 Downloading `derp/derpllibc/filek.txt' at 7970/40738 (12 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e412bf Downloading `derp/derpllibc/filexi.txt' at 0/48443 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e413c4 Downloading `derp/derpllibc/filek.txt' at 40738/40738 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e414c8 Downloading `derp/derpllibc/filek.txt' done (0 b/s).
@400000005ec7329d32e415c2 Downloading `derp/derpllibc/filej.txt' at 0/50379 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e416a9 Downloading `derp/derpllibc/filexi.txt' at 15675/48443 (6 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e41799 Downloading `derp/derpllibc/filej.txt' at 17611/50379 (5 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e4188a Downloading `derp/derpllibc/filexi.txt' at 48443/48443 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e4197a Downloading `derp/derpllibc/filexi.txt' done (0 b/s).
@400000005ec7329d32e41a57 Downloading `derp/derpllibc/filej.txt' at 50379/50379 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e41b51 Downloading `derp/derpllibc/filej.txt' done (0 b/s).
@400000005ec7329d32e41c4c Downloading `derp/derpllibc/fileoq.txt' at 0/44610 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e41d32 Downloading `derp/derpllibc/filee.txt' at 0/65152 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e41e23 Downloading `derp/derpllibc/fileoq.txt' at 11842/44610 (8 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e41ef5 Downloading `derp/derpllibc/fileoq.txt' at 44610/44610 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e41fe5 Downloading `derp/derpllibc/fileoq.txt' done (0 b/s).
@400000005ec7329d32e420cc Downloading `derp/derpllibc/filee.txt' at 32384/65152 (182 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e421b2 Downloading `derp/derpllibc/filee.txt' at 65152/65152 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e422a3 Downloading `derp/derpllibc/filee.txt' done (0 b/s).
@400000005ec7329d32e42393 Downloading `derp/derpllibc/filez.txt' at 0/58251 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e42484 Downloading `derp/derpllibc/fileaw.html' at 0/55115 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e42574 Downloading `derp/derpllibc/filez.txt' at 25483/58251 (231 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e4265a Downloading `derp/derpllibc/fileaw.html' at 22347/55115 (264 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e42741 Downloading `derp/derpllibc/filez.txt' at 58251/58251 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e42827 Downloading `derp/derpllibc/filez.txt' done (0 b/s).
@400000005ec7329d32e42918 Downloading `derp/derpllibc/fileaw.html' at 55115/55115 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e42a08 Downloading `derp/derpllibc/fileaw.html' done (0 b/s).
@400000005ec7329d32e42aef Downloading `derp/derpllibc/filekkj.txt' at 0/61589 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e42bd5 Downloading `derp/derpllibc/filet.txt' at 0/64223 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e42cbc Downloading `derp/derpllibc/filekkj.txt' at 28821/61589 (204 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e42dac Downloading `derp/derpllibc/filekkj.txt' at 61589/61589 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e42e9c Downloading `derp/derpllibc/filekkj.txt' done (0 b/s).
@400000005ec7329d32e42f8d Downloading `derp/derpllibc/filet.txt' at 31455/64223 (187 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e43069 Downloading `derp/derpllibc/filet.txt' at 64223/64223 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e43164 Downloading `derp/derpllibc/filet.txt' done (0 b/s).
@400000005ec7329d32e43240 Downloading `derp/derpllibc/fileg.txt' at 0/79949 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d32e43331 Downloading `derp/derpeitomt/filejjqatq.html' at 0/45382 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b7126 Downloading `derp/derpllibc/fileg.txt' at 14413/79949 (13 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b7c11 Downloading `derp/derpllibc/fileg.txt' at 47181/79949 (125 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b7d3e Downloading `derp/derpeitomt/filejjqatq.html' at 12614/45382 (7 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b7e2e Downloading `derp/derpllibc/fileg.txt' at 79949/79949 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b7f1e Downloading `derp/derpllibc/fileg.txt' done (0 b/s).
@400000005ec7329d340b8023 Downloading `derp/derpllibc.gnd' done (0 b/s).
@400000005ec7329d340b8109 Downloading `derp/derpeitomt/filejjqatq.html' at 45382/45382 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b820e Downloading `derp/derpeitomt/filejjqatq.html' done (0 b/s).
@400000005ec7329d340b82fe Downloading `derp/derpeitomt/filebnqxum.html' at 0/75169 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b83e5 Downloading `derp/derpeitomt/filembhtz.html' at 0/48713 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b84cb Downloading `derp/derpeitomt/filebnqxum.html' at 9633/75169 (20 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b85b2 Downloading `derp/derpeitomt/filembhtz.html' at 15945/48713 (6 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b868e Downloading `derp/derpeitomt/filebnqxum.html' at 42401/75169 (139 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b8774 Downloading `derp/derpeitomt/filembhtz.html' at 48713/48713 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b8865 Downloading `derp/derpeitomt/filembhtz.html' done (0 b/s).
@400000005ec7329d340b894b Downloading `derp/derpeitomt/filebnqxum.html' at 75169/75169 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b8a5a Downloading `derp/derpeitomt/filebnqxum.html' done (0 b/s).
@400000005ec7329d340b8b68 Downloading `derp/derpeitomt/filejzydi.html' at 0/49671 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b8c59 Downloading `derp/derpeitomt/filenlkls.html' at 0/40674 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b8d49 Downloading `derp/derpeitomt/filejzydi.html' at 16903/49671 (5 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b8e3a Downloading `derp/derpeitomt/filejzydi.html' at 49671/49671 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b8f20 Downloading `derp/derpeitomt/filejzydi.html' done (0 b/s).
@400000005ec7329d340b9011 Downloading `derp/derpeitomt/filenlkls.html' at 7906/40674 (12 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b90f7 Downloading `derp/derpeitomt/filenlkls.html' at 40674/40674 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b91f1 Downloading `derp/derpeitomt/filenlkls.html' done (0 b/s).
@400000005ec7329d340b92ce Downloading `derp/derpeitomt/filedngcxy.txt' at 0/43084 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b93b4 Downloading `derp/derpeitomt/fileadhkb.html' at 0/77994 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b949b Downloading `derp/derpeitomt/filedngcxy.txt' at 10316/43084 (9 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b9577 Downloading `derp/derpeitomt/filedngcxy.txt' at 43084/43084 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b9668 Downloading `derp/derpeitomt/filedngcxy.txt' done (0 b/s).
@400000005ec7329d340b974e Downloading `derp/derpeitomt/fileadhkb.html' at 12458/77994 (15 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b9820 Downloading `derp/derpeitomt/fileadhkb.html' at 45226/77994 (130 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b9911 Downloading `derp/derpeitomt/fileadhkb.html' at 77994/77994 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b9a01 Downloading `derp/derpeitomt/fileadhkb.html' done (0 b/s).
@400000005ec7329d340b9ae8 Downloading `derp/derpeitomt/fileaktnus.txt' at 0/54399 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b9be2 Downloading `derp/derpeitomt/fileoqoj.txt' at 0/72251 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b9cb5 Downloading `derp/derpeitomt/fileaktnus.txt' at 21631/54399 (272 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b9da5 Downloading `derp/derpeitomt/fileaktnus.txt' at 54399/54399 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340b9e96 Downloading `derp/derpeitomt/fileaktnus.txt' done (0 b/s).
@400000005ec7329d340b9f72 Downloading `derp/derpeitomt/fileoqoj.txt' at 6715/72251 (29 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d340ba04e Downloading `derp/derpeitomt/fileoqoj.txt' at 39483/72251 (149 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3507d790 Downloading `derp/derpeitomt/fileoqoj.txt' at 72251/72251 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3507e0e0 Downloading `derp/derpeitomt/fileoqoj.txt' done (0 b/s).
@400000005ec7329d3507e253 Downloading `derp/derpeitomt/filewtzs.txt' at 0/78417 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3507e394 Downloading `derp/derpeitomt/filelzucs.txt' at 0/76495 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3507e4c0 Downloading `derp/derpeitomt/filewtzs.txt' at 12881/78417 (15 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3507e5f7 Downloading `derp/derpeitomt/filewtzs.txt' at 45649/78417 (129 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3507e792 Downloading `derp/derpeitomt/filelzucs.txt' at 10959/76495 (17 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3507e8fa Downloading `derp/derpeitomt/filewtzs.txt' at 78417/78417 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3507ea3b Downloading `derp/derpeitomt/filewtzs.txt' done (0 b/s).
@400000005ec7329d3507eb86 Downloading `derp/derpeitomt/filelzucs.txt' at 43727/76495 (135 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3507eca8 Downloading `derp/derpeitomt/filelzucs.txt' at 76495/76495 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3507ede9 Downloading `derp/derpeitomt/filelzucs.txt' done (0 b/s).
@400000005ec7329d3507ef15 Downloading `derp/derpeitomt/filestdh.html' at 0/45899 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3507f042 Downloading `derp/derpeitomt/filevqxcw.txt' at 0/41178 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3507f16e Downloading `derp/derpeitomt/filestdh.html' at 13131/45899 (7 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3507f291 Downloading `derp/derpeitomt/filevqxcw.txt' at 8410/41178 (11 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3507f3a9 Downloading `derp/derpeitomt/filestdh.html' at 45899/45899 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3507f4d6 Downloading `derp/derpeitomt/filestdh.html' done (0 b/s).
@400000005ec7329d3507f603 Downloading `derp/derpeitomt/filevqxcw.txt' at 41178/41178 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3507f72f Downloading `derp/derpeitomt/filevqxcw.txt' done (0 b/s).
@400000005ec7329d3507f852 Downloading `derp/derpeitomt/filexzo.html' at 0/43096 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3507f96a Downloading `derp/derpeitomt/filewzg.html' at 0/40579 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3507fa97 Downloading `derp/derpeitomt/filexzo.html' at 10328/43096 (9 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3507fbaf Downloading `derp/derpeitomt/filexzo.html' at 43096/43096 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3507fcdc Downloading `derp/derpeitomt/filexzo.html' done (0 b/s).
@400000005ec7329d3507fe08 Downloading `derp/derpeitomt/filewzg.html' at 7811/40579 (12 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3507ff2b Downloading `derp/derpeitomt/filewzg.html' at 40579/40579 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d35080058 Downloading `derp/derpeitomt/filewzg.html' done (0 b/s).
@400000005ec7329d3508017a Downloading `derp/derpeitomt/filelwb.html' at 0/44401 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3508029d Downloading `derp/derpeitomt/filevfuv.txt' at 0/79310 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d350803bf Downloading `derp/derpeitomt/filelwb.html' at 11633/44401 (8 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d350804e2 Downloading `derp/derpeitomt/filelwb.html' at 44401/44401 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3508060e Downloading `derp/derpeitomt/filelwb.html' done (0 b/s).
@400000005ec7329d3508073b Downloading `derp/derpeitomt/filevfuv.txt' at 13774/79310 (14 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d35080853 Downloading `derp/derpeitomt/filevfuv.txt' at 46542/79310 (126 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3508098a Downloading `derp/derpeitomt/filevfuv.txt' at 79310/79310 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d35080aad Downloading `derp/derpeitomt/filevfuv.txt' done (0 b/s).
@400000005ec7329d35080be3 Downloading `derp/derpeitomt/filery.txt' at 0/74702 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d35080d06 Downloading `derp/derpeitomt/filenpi.html' at 0/44207 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d35080e14 Downloading `derp/derpeitomt/filery.txt' at 9166/74702 (21 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d35080f7d Downloading `derp/derpeitomt/filery.txt' at 41934/74702 (140 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d350810d1 Downloading `derp/derpeitomt/filery.txt' at 74702/74702 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a515e Downloading `derp/derpeitomt/filery.txt' done (0 b/s).
@400000005ec7329d361a5d30 Downloading `derp/derpeitomt/filenpi.html' at 11439/44207 (8 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a5e8f Downloading `derp/derpeitomt/filenpi.html' at 44207/44207 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a5fd9 Downloading `derp/derpeitomt/filenpi.html' done (0 b/s).
@400000005ec7329d361a6106 Downloading `derp/derpeitomt/fileu.html' at 0/48597 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a623c Downloading `derp/derpeitomt/filebh.txt' at 0/41152 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a635f Downloading `derp/derpeitomt/fileu.html' at 15829/48597 (6 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a6481 Downloading `derp/derpeitomt/fileu.html' at 48597/48597 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a65b8 Downloading `derp/derpeitomt/fileu.html' done (0 b/s).
@400000005ec7329d361a66ef Downloading `derp/derpeitomt/filebh.txt' at 8384/41152 (11 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a681b Downloading `derp/derpeitomt/filea.html' at 0/54003 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a6948 Downloading `derp/derpeitomt/filebh.txt' at 41152/41152 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a6a6a Downloading `derp/derpeitomt/filebh.txt' done (0 b/s).
@400000005ec7329d361a6b97 Downloading `derp/derpeitomt/filea.html' at 21235/54003 (278 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a6caf Downloading `derp/derpeitomt/fileb.html' at 0/51969 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a6dd2 Downloading `derp/derpeitomt/filea.html' at 54003/54003 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a6efe Downloading `derp/derpeitomt/filea.html' done (0 b/s).
@400000005ec7329d361a702b Downloading `derp/derpeitomt/fileb.html' at 19201/51969 (5 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a714e Downloading `derp/derpeitomt/fileb.html' at 51969/51969 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a727a Downloading `derp/derpeitomt/fileb.html' done (0 b/s).
@400000005ec7329d361a73b1 Downloading `derp/derpeitomt/fileemu.txt' at 0/59017 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a74d3 Downloading `derp/derpeitomt/filejtb.txt' at 0/46340 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a75f6 Downloading `derp/derpeitomt/fileemu.txt' at 26249/59017 (224 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a7704 Downloading `derp/derpeitomt/fileemu.txt' at 59017/59017 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a783b Downloading `derp/derpeitomt/fileemu.txt' done (0 b/s).
@400000005ec7329d361a7967 Downloading `derp/derpeitomt/filejtb.txt' at 13572/46340 (7 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a7a8a Downloading `derp/derpeitomt/filejtb.txt' at 46340/46340 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a7bb7 Downloading `derp/derpeitomt/filejtb.txt' done (0 b/s).
@400000005ec7329d361a7ccf Downloading `derp/derpeitomt/filetl.txt' at 0/67188 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a7de8 Downloading `derp/derpeitomt/fileoh.txt' at 0/40380 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a7f00 Downloading `derp/derpeitomt/filetl.txt' at 1652/67188 (119 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a8019 Downloading `derp/derpeitomt/filetl.txt' at 34420/67188 (171 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a8131 Downloading `derp/derpeitomt/fileoh.txt' at 7612/40380 (12 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a824a Downloading `derp/derpeitomt/filetl.txt' at 67188/67188 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a8376 Downloading `derp/derpeitomt/filetl.txt' done (0 b/s).
@400000005ec7329d361a848f Downloading `derp/derpeitomt/fileoh.txt' at 40380/40380 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a85bb Downloading `derp/derpeitomt/fileoh.txt' done (0 b/s).
@400000005ec7329d361a86d4 Downloading `derp/derpeitomt/fileb.txt' at 0/40957 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a87f7 Downloading `derp/derpicqy/filebbvnjn.html' at 0/41474 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a890f Downloading `derp/derpeitomt/fileb.txt' at 8189/40957 (12 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a8a32 Downloading `derp/derpicqy/filebbvnjn.html' at 8706/41474 (11 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a8b40 Downloading `derp/derpeitomt/fileb.txt' at 40957/40957 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d361a8c77 Downloading `derp/derpeitomt/fileb.txt' done (0 b/s).
@400000005ec7329d3733c53c Downloading `derp/derpeitomt.gnd' done (0 b/s).
@400000005ec7329d3733cdc4 Downloading `derp/derpicqy/filebbvnjn.html' at 41474/41474 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733cf23 Downloading `derp/derpicqy/filebbvnjn.html' done (0 b/s).
@400000005ec7329d3733d06e Downloading `derp/derpicqy/fileqwixnk.html' at 0/48476 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733d1a4 Downloading `derp/derpicqy/filebbfool.txt' at 0/78958 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733d2db Downloading `derp/derpicqy/fileqwixnk.html' at 15708/48476 (6 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733d476 Downloading `derp/derpicqy/filebbfool.txt' at 13422/78958 (14 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733d5de Downloading `derp/derpicqy/fileqwixnk.html' at 48476/48476 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733d71f Downloading `derp/derpicqy/fileqwixnk.html' done (0 b/s).
@400000005ec7329d3733d841 Downloading `derp/derpicqy/filebbfool.txt' at 46190/78958 (127 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733d96e Downloading `derp/derpicqy/filebbfool.txt' at 78958/78958 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733daa5 Downloading `derp/derpicqy/filebbfool.txt' done (0 b/s).
@400000005ec7329d3733dbd1 Downloading `derp/derpicqy/fileggjwee.txt' at 0/49873 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733dce0 Downloading `derp/derpicqy/filerzzuro.html' at 0/43670 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733ddf8 Downloading `derp/derpicqy/fileggjwee.txt' at 17105/49873 (5 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733df25 Downloading `derp/derpicqy/filerzzuro.html' at 10902/43670 (9 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733e047 Downloading `derp/derpicqy/fileggjwee.txt' at 49873/49873 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733e174 Downloading `derp/derpicqy/fileggjwee.txt' done (0 b/s).
@400000005ec7329d3733e296 Downloading `derp/derpicqy/filerzzuro.html' at 43670/43670 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733e3c3 Downloading `derp/derpicqy/filerzzuro.html' done (0 b/s).
@400000005ec7329d3733e4e5 Downloading `derp/derpicqy/fileytdv.txt' at 0/46742 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733e61c Downloading `derp/derpicqy/filezben.txt' at 0/45078 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733e749 Downloading `derp/derpicqy/fileytdv.txt' at 13974/46742 (7 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733e89d Downloading `derp/derpicqy/fileytdv.txt' at 46742/46742 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733e9e8 Downloading `derp/derpicqy/fileytdv.txt' done (0 b/s).
@400000005ec7329d3733eb14 Downloading `derp/derpicqy/filezben.txt' at 12310/45078 (7 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733ec4b Downloading `derp/derpicqy/filezben.txt' at 45078/45078 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733ed78 Downloading `derp/derpicqy/filezben.txt' done (0 b/s).
@400000005ec7329d3733ee90 Downloading `derp/derpicqy/filecz.html' at 0/42119 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733efa9 Downloading `derp/derpicqy/filefop.html' at 0/49325 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733f0c1 Downloading `derp/derpicqy/filecz.html' at 9351/42119 (10 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733f1d0 Downloading `derp/derpicqy/filecz.html' at 42119/42119 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733f2fc Downloading `derp/derpicqy/filecz.html' done (0 b/s).
@400000005ec7329d3733f41f Downloading `derp/derpicqy/filefop.html' at 16557/49325 (5 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733f52d Downloading `derp/derpicqy/filefop.html' at 49325/49325 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733f65a Downloading `derp/derpicqy/filefop.html' done (0 b/s).
@400000005ec7329d3733f786 Downloading `derp/derpicqy/filekjx.html' at 0/55078 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733f895 Downloading `derp/derpicqy/fileqg.html' at 0/40588 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733f9ae Downloading `derp/derpicqy/filekjx.html' at 22310/55078 (264 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733fac6 Downloading `derp/derpicqy/fileqg.html' at 7820/40588 (12 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733fbd5 Downloading `derp/derpicqy/filekjx.html' at 55078/55078 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3733fd01 Downloading `derp/derpicqy/filekjx.html' done (0 b/s).
@400000005ec7329d3733fe38 Downloading `derp/derpicqy/fileqg.html' at 40588/40588 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d384921bd Downloading `derp/derpicqy/fileqg.html' done (0 b/s).
@400000005ec7329d38492c76 Downloading `derp/derpicqy/filebi.html' at 0/72425 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d38492d99 Downloading `derp/derpicqy/filecx.html' at 0/57852 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d38492e7f Downloading `derp/derpicqy/filebi.html' at 6889/72425 (28 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d38492f5c Downloading `derp/derpicqy/filebi.html' at 39657/72425 (148 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d38493042 Downloading `derp/derpicqy/filecx.html' at 25084/57852 (235 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d38493114 Downloading `derp/derpicqy/filebi.html' at 72425/72425 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d38493219 Downloading `derp/derpicqy/filebi.html' done (0 b/s).
@400000005ec7329d384932ff Downloading `derp/derpicqy/filecx.html' at 57852/57852 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d384933fa Downloading `derp/derpicqy/filecx.html' done (0 b/s).
@400000005ec7329d384934f4 Downloading `derp/derpicqy/filefavi.html' at 0/68187 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d384935e5 Downloading `derp/derpicqy/fileyzdxp.txt' at 0/75449 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d384936b7 Downloading `derp/derpicqy/filefavi.html' at 2651/68187 (74 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3849379e Downloading `derp/derpicqy/filefavi.html' at 35419/68187 (166 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d38493884 Downloading `derp/derpicqy/fileyzdxp.txt' at 9913/75449 (19 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3849396a Downloading `derp/derpicqy/filefavi.html' at 68187/68187 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d38493a5b Downloading `derp/derpicqy/filefavi.html' done (0 b/s).
@400000005ec7329d38493b2d Downloading `derp/derpicqy/fileyzdxp.txt' at 42681/75449 (138 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d38493c14 Downloading `derp/derpicqy/fileyzdxp.txt' at 75449/75449 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d38493d04 Downloading `derp/derpicqy/fileyzdxp.txt' done (0 b/s).
@400000005ec7329d38493deb Downloading `derp/derpicqy/filek.html' at 0/51284 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d38493ed1 Downloading `derp/derpicqy/filedriju.txt' at 0/51399 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d38493fb7 Downloading `derp/derpicqy/filek.html' at 18516/51284 (5 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d38494094 Downloading `derp/derpicqy/filek.html' at 51284/51284 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d38494184 Downloading `derp/derpicqy/filek.html' done (0 b/s).
@400000005ec7329d38494261 Downloading `derp/derpicqy/filedriju.txt' at 18631/51399 (5 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d38494347 Downloading `derp/derpicqy/filedriju.txt' at 51399/51399 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d38494438 Downloading `derp/derpicqy/filedriju.txt' done (0 b/s).
@400000005ec7329d3849451e Downloading `derp/derpicqy/fileqk.txt' at 0/42824 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d38494605 Downloading `derp/derpicqy/fileb.txt' at 0/43635 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d384946f5 Downloading `derp/derpicqy/fileqk.txt' at 10056/42824 (9 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d384947db Downloading `derp/derpicqy/fileqk.txt' at 42824/42824 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d384948cc Downloading `derp/derpicqy/fileqk.txt' done (0 b/s).
@400000005ec7329d384949a8 Downloading `derp/derpicqy/fileb.txt' at 10867/43635 (9 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d38494a8f Downloading `derp/derpicqy/fileb.txt' at 43635/43635 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d38494b7f Downloading `derp/derpicqy/fileb.txt' done (0 b/s).
@400000005ec7329d38494c66 Downloading `derp/derpicqy/fileu.txt' at 0/54720 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d38494d42 Downloading `derp/derpicqy/filel.txt' at 0/43231 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d38494e1e Downloading `derp/derpicqy/fileu.txt' at 21952/54720 (269 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d38494f05 Downloading `derp/derpicqy/fileu.txt' at 54720/54720 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d38494ff5 Downloading `derp/derpicqy/fileu.txt' done (0 b/s).
@400000005ec7329d384950dc Downloading `derp/derpicqy/filel.txt' at 10463/43231 (9 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d384951d6 Downloading `derp/derpicqy/filel.txt' at 43231/43231 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d39621b1c Downloading `derp/derpicqy/filel.txt' done (0 b/s).
@400000005ec7329d396223e0 Downloading `derp/derpicqy/filexg.html' at 0/58057 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d396224f9 Downloading `derp/derpqup/fileoltaky.html' at 0/40573 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d396225fd Downloading `derp/derpicqy/filexg.html' at 25289/58057 (233 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d39622720 Downloading `derp/derpicqy/filexg.html' at 58057/58057 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3962284c Downloading `derp/derpicqy/filexg.html' done (0 b/s).
@400000005ec7329d39622983 Downloading `derp/derpicqy.gnd' done (0 b/s).
@400000005ec7329d39622a9b Downloading `derp/derpqup/fileoltaky.html' at 7805/40573 (12 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d39622b96 Downloading `derp/derpqup/filefzawkj.txt' at 0/56539 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d39622cae Downloading `derp/derpqup/fileoltaky.html' at 40573/40573 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d39622da9 Downloading `derp/derpqup/fileoltaky.html' done (0 b/s).
@400000005ec7329d39622e99 Downloading `derp/derpqup/filefzawkj.txt' at 23771/56539 (248 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d39622f8a Downloading `derp/derpqup/fileydmgx.html' at 0/62643 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d39623084 Downloading `derp/derpqup/filefzawkj.txt' at 56539/56539 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d39623175 Downloading `derp/derpqup/filefzawkj.txt' done (0 b/s).
@400000005ec7329d3962325b Downloading `derp/derpqup/fileydmgx.html' at 29875/62643 (197 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d39623338 Downloading `derp/derpqup/fileydmgx.html' at 62643/62643 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d39623432 Downloading `derp/derpqup/fileydmgx.html' done (0 b/s).
@400000005ec7329d3962352d Downloading `derp/derpqup/filetqcmx.html' at 0/63843 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d39623613 Downloading `derp/derpqup/filekhcyx.html' at 0/42360 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d396236f9 Downloading `derp/derpqup/filetqcmx.html' at 31075/63843 (190 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d396237d6 Downloading `derp/derpqup/filetqcmx.html' at 63843/63843 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d396238d0 Downloading `derp/derpqup/filetqcmx.html' done (0 b/s).
@400000005ec7329d396239c1 Downloading `derp/derpqup/filekhcyx.html' at 9592/42360 (10 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d39623aa7 Downloading `derp/derpqup/filekhcyx.html' at 42360/42360 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d39623b8e Downloading `derp/derpqup/filekhcyx.html' done (0 b/s).
@400000005ec7329d39623c88 Downloading `derp/derpqup/filewvhpo.html' at 0/52800 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d39623d6f Downloading `derp/derpqup/fileqhloz.html' at 0/59472 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d39623e55 Downloading `derp/derpqup/filewvhpo.html' at 20032/52800 (294 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d39623f31 Downloading `derp/derpqup/filewvhpo.html' at 52800/52800 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d39624018 Downloading `derp/derpqup/filewvhpo.html' done (0 b/s).
@400000005ec7329d39624108 Downloading `derp/derpqup/fileqhloz.html' at 26704/59472 (221 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d396241e5 Downloading `derp/derpqup/fileqhloz.html' at 59472/59472 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d396242d5 Downloading `derp/derpqup/fileqhloz.html' done (0 b/s).
@400000005ec7329d396243c6 Downloading `derp/derpqup/filejrts.html' at 0/44252 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d396244a2 Downloading `derp/derpqup/fileunc.txt' at 0/48448 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d39624588 Downloading `derp/derpqup/filejrts.html' at 11484/44252 (8 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d39624665 Downloading `derp/derpqup/filejrts.html' at 44252/44252 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d39624755 Downloading `derp/derpqup/filejrts.html' done (0 b/s).
@400000005ec7329d3962483c Downloading `derp/derpqup/fileunc.txt' at 15680/48448 (6 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d39624918 Downloading `derp/derpqup/fileunc.txt' at 48448/48448 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d39624a09 Downloading `derp/derpqup/fileunc.txt' done (0 b/s).
@400000005ec7329d39624aef Downloading `derp/derpqup/fileoskx.txt' at 0/42904 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77cd98 Downloading `derp/derpqup/filegsoga.txt' at 0/69683 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77d76b Downloading `derp/derpqup/fileoskx.txt' at 10136/42904 (9 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77d898 Downloading `derp/derpqup/fileoskx.txt' at 42904/42904 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77d9b0 Downloading `derp/derpqup/fileoskx.txt' done (0 b/s).
@400000005ec7329d3a77dac9 Downloading `derp/derpqup/filegsoga.txt' at 4147/69683 (47 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77dbb9 Downloading `derp/derpqup/filegsoga.txt' at 36915/69683 (160 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77dc96 Downloading `derp/derpqup/filegsoga.txt' at 69683/69683 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77dd86 Downloading `derp/derpqup/filegsoga.txt' done (0 b/s).
@400000005ec7329d3a77de76 Downloading `derp/derpqup/filewchs.html' at 0/64782 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77df53 Downloading `derp/derpqup/fileiiwp.html' at 0/63991 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77e039 Downloading `derp/derpqup/filewchs.html' at 32014/64782 (184 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77e116 Downloading `derp/derpqup/filewchs.html' at 64782/64782 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77e1fc Downloading `derp/derpqup/filewchs.html' done (0 b/s).
@400000005ec7329d3a77e2f7 Downloading `derp/derpqup/fileiiwp.html' at 31223/63991 (189 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77e3d3 Downloading `derp/derpqup/fileiiwp.html' at 63991/63991 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77e4c3 Downloading `derp/derpqup/fileiiwp.html' done (0 b/s).
@400000005ec7329d3a77e5a0 Downloading `derp/derpqup/filea.html' at 0/63345 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77e686 Downloading `derp/derpqup/fileflgs.html' at 0/49140 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77e777 Downloading `derp/derpqup/filea.html' at 30577/63345 (193 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77e853 Downloading `derp/derpqup/filea.html' at 63345/63345 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77e944 Downloading `derp/derpqup/filea.html' done (0 b/s).
@400000005ec7329d3a77ea34 Downloading `derp/derpqup/fileflgs.html' at 16372/49140 (6 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77eb11 Downloading `derp/derpqup/fileflgs.html' at 49140/49140 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77ec01 Downloading `derp/derpqup/fileflgs.html' done (0 b/s).
@400000005ec7329d3a77ece7 Downloading `derp/derpqup/filedfvcb.txt' at 0/41867 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77edba Downloading `derp/derpqup/filek.html' at 0/49136 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77eea0 Downloading `derp/derpqup/filedfvcb.txt' at 9099/41867 (10 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77ef7d Downloading `derp/derpqup/filedfvcb.txt' at 41867/41867 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77f06d Downloading `derp/derpqup/filedfvcb.txt' done (0 b/s).
@400000005ec7329d3a77f186 Downloading `derp/derpqup/filek.html' at 16368/49136 (6 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77f28a Downloading `derp/derpqup/filek.html' at 49136/49136 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77f371 Downloading `derp/derpqup/filek.html' done (0 b/s).
@400000005ec7329d3a77f461 Downloading `derp/derpqup/fileti.txt' at 0/46303 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77f53d Downloading `derp/derpqup/filevx.txt' at 0/66293 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77f61a Downloading `derp/derpqup/fileti.txt' at 13535/46303 (7 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77f700 Downloading `derp/derpqup/filevx.txt' at 757/66293 (260 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77f7dd Downloading `derp/derpqup/fileti.txt' at 46303/46303 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77f8cd Downloading `derp/derpqup/fileti.txt' done (0 b/s).
@400000005ec7329d3a77f9aa Downloading `derp/derpqup/filevx.txt' at 33525/66293 (176 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77fa86 Downloading `derp/derpqup/filevx.txt' at 66293/66293 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77fb76 Downloading `derp/derpqup/filevx.txt' done (0 b/s).
@400000005ec7329d3a77fc53 Downloading `derp/derpqup/filelj.txt' at 0/41891 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3a77fd39 Downloading `derp/derpvks/filemysdae.txt' at 0/62881 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6f7dac Downloading `derp/derpqup/filelj.txt' at 9123/41891 (10 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6f897e Downloading `derp/derpqup/filelj.txt' at 41891/41891 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6f8b0f Downloading `derp/derpqup/filelj.txt' done (0 b/s).
@400000005ec7329d3b6f8c5a Downloading `derp/derpqup.gnd' done (0 b/s).
@400000005ec7329d3b6f8dea Downloading `derp/derpvks/filemysdae.txt' at 30113/62881 (196 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6f8f2b Downloading `derp/derpvks/filersfhuj.html' at 0/72072 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6f909e Downloading `derp/derpvks/filemysdae.txt' at 62881/62881 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6f91e8 Downloading `derp/derpvks/filemysdae.txt' done (0 b/s).
@400000005ec7329d3b6f9347 Downloading `derp/derpvks/filersfhuj.html' at 6536/72072 (30 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6f947d Downloading `derp/derpvks/filerzylj.html' at 0/55807 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6f95c8 Downloading `derp/derpvks/filersfhuj.html' at 39304/72072 (150 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6f971d Downloading `derp/derpvks/filersfhuj.html' at 72072/72072 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6f985d Downloading `derp/derpvks/filersfhuj.html' done (0 b/s).
@400000005ec7329d3b6f99a8 Downloading `derp/derpvks/filerzylj.html' at 23039/55807 (256 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6f9adf Downloading `derp/derpvks/filerzylj.html' at 55807/55807 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6f9c1f Downloading `derp/derpvks/filerzylj.html' done (0 b/s).
@400000005ec7329d3b6f9d88 Downloading `derp/derpvks/fileaztv.html' at 0/41457 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6f9ed2 Downloading `derp/derpvks/filezknc.html' at 0/41004 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6fa009 Downloading `derp/derpvks/fileaztv.html' at 8689/41457 (11 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6fa154 Downloading `derp/derpvks/fileaztv.html' at 41457/41457 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6fa29e Downloading `derp/derpvks/fileaztv.html' done (0 b/s).
@400000005ec7329d3b6fa3cb Downloading `derp/derpvks/filezknc.html' at 8236/41004 (11 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6fa50b Downloading `derp/derpvks/filezknc.html' at 41004/41004 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6fa656 Downloading `derp/derpvks/filezknc.html' done (0 b/s).
@400000005ec7329d3b6fa797 Downloading `derp/derpvks/filebl.html' at 0/70424 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6fa8cd Downloading `derp/derpvks/filea.html' at 0/40805 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6faa0e Downloading `derp/derpvks/filebl.html' at 4888/70424 (40 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6fab4e Downloading `derp/derpvks/filea.html' at 8037/40805 (12 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6fac8f Downloading `derp/derpvks/filebl.html' at 37656/70424 (156 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6fadda Downloading `derp/derpvks/filea.html' at 40805/40805 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6faf2e Downloading `derp/derpvks/filea.html' done (0 b/s).
@400000005ec7329d3b6fb05b Downloading `derp/derpvks/filebl.html' at 70424/70424 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6fb1b0 Downloading `derp/derpvks/filebl.html' done (0 b/s).
@400000005ec7329d3b6fb304 Downloading `derp/derpvks/fileyyf.txt' at 0/46606 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6fb43b Downloading `derp/derpvks/filexrejn.txt' at 0/42101 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6fb585 Downloading `derp/derpvks/fileyyf.txt' at 13838/46606 (7 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6fb6bc Downloading `derp/derpvks/fileyyf.txt' at 46606/46606 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6fb807 Downloading `derp/derpvks/fileyyf.txt' done (0 b/s).
@400000005ec7329d3b6fb93d Downloading `derp/derpvks/filexrejn.txt' at 9333/42101 (10 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6fba7e Downloading `derp/derpvks/filexrejn.txt' at 42101/42101 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6fbbd2 Downloading `derp/derpvks/filexrejn.txt' done (0 b/s).
@400000005ec7329d3b6fbd13 Downloading `derp/derpvks/filebhpt.html' at 0/47583 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6fbe54 Downloading `derp/derpvks/filegqmjo.txt' at 0/69946 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329d3b6fbf8a Downloading `derp/derpvks/filebhpt.html' at 14815/47583 (6 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb0608 Downloading `derp/derpvks/filebhpt.html' at 47583/47583 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb0e18 Downloading `derp/derpvks/filebhpt.html' done (0 b/s).
@400000005ec7329e00cb0f3a Downloading `derp/derpvks/filegqmjo.txt' at 4410/69946 (44 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb1035 Downloading `derp/derpvks/filegqmjo.txt' at 37178/69946 (158 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb1125 Downloading `derp/derpvks/filegqmjo.txt' at 69946/69946 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb1216 Downloading `derp/derpvks/filegqmjo.txt' done (0 b/s).
@400000005ec7329e00cb12fc Downloading `derp/derpvks/filef.txt' at 0/40877 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb13e3 Downloading `derp/derpvks/filedi.txt' at 0/54100 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb14c9 Downloading `derp/derpvks/filef.txt' at 8109/40877 (12 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb15ba Downloading `derp/derpvks/filedi.txt' at 21332/54100 (276 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb16be Downloading `derp/derpvks/filef.txt' at 40877/40877 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb17c3 Downloading `derp/derpvks/filef.txt' done (0 b/s).
@400000005ec7329e00cb18a9 Downloading `derp/derpvks/filedi.txt' at 54100/54100 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb198f Downloading `derp/derpvks/filedi.txt' done (0 b/s).
@400000005ec7329e00cb1a80 Downloading `derp/derpvks/filei.txt' at 0/68680 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb1b70 Downloading `derp/derpvks/filekn.txt' at 0/47736 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb1c4d Downloading `derp/derpvks/filei.txt' at 3144/68680 (62 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb1d33 Downloading `derp/derpvks/filei.txt' at 35912/68680 (164 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb1e10 Downloading `derp/derpvks/filekn.txt' at 14968/47736 (6 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb1ee2 Downloading `derp/derpvks/filei.txt' at 68680/68680 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb1fd2 Downloading `derp/derpvks/filei.txt' done (0 b/s).
@400000005ec7329e00cb20b9 Downloading `derp/derpvks/filekn.txt' at 47736/47736 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb219f Downloading `derp/derpvks/filekn.txt' done (0 b/s).
@400000005ec7329e00cb2286 Downloading `derp/derpvks/fileg.txt' at 0/45041 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb2362 Downloading `derp/derpugoyt/fileirpwxf.txt' at 0/60958 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb2449 Downloading `derp/derpvks/fileg.txt' at 12273/45041 (8 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb2525 Downloading `derp/derpvks/fileg.txt' at 45041/45041 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb2615 Downloading `derp/derpvks/fileg.txt' done (0 b/s).
@400000005ec7329e00cb26fc Downloading `derp/derpvks.gnd' done (0 b/s).
@400000005ec7329e00cb27ec Downloading `derp/derpugoyt/fileirpwxf.txt' at 28190/60958 (209 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb28d3 Downloading `derp/derpugoyt/filehmlf.txt' at 0/72593 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb29b9 Downloading `derp/derpugoyt/fileirpwxf.txt' at 60958/60958 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb2a96 Downloading `derp/derpugoyt/fileirpwxf.txt' done (0 b/s).
@400000005ec7329e00cb2b90 Downloading `derp/derpugoyt/fileqbhd.txt' at 0/50809 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb2c77 Downloading `derp/derpugoyt/filehmlf.txt' at 7057/72593 (27 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb2d53 Downloading `derp/derpugoyt/filehmlf.txt' at 39825/72593 (148 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb2e43 Downloading `derp/derpugoyt/filehmlf.txt' at 72593/72593 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb2f34 Downloading `derp/derpugoyt/filehmlf.txt' done (0 b/s).
@400000005ec7329e00cb3010 Downloading `derp/derpugoyt/fileqbhd.txt' at 18041/50809 (5 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb30ed Downloading `derp/derpugoyt/fileqbhd.txt' at 50809/50809 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb31dd Downloading `derp/derpugoyt/fileqbhd.txt' done (0 b/s).
@400000005ec7329e00cb32ba Downloading `derp/derpugoyt/filexgdwsu.html' at 0/52353 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb3396 Downloading `derp/derpugoyt/filegsb.html' at 0/45567 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e00cb3486 Downloading `derp/derpugoyt/filexgdwsu.html' at 19585/52353 (5 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c7055c Downloading `derp/derpugoyt/filexgdwsu.html' at 52353/52353 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c70e8f Downloading `derp/derpugoyt/filexgdwsu.html' done (0 b/s).
@400000005ec7329e01c70fed Downloading `derp/derpugoyt/filegsb.html' at 12799/45567 (7 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c71138 Downloading `derp/derpugoyt/filegsb.html' at 45567/45567 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c7126f Downloading `derp/derpugoyt/filegsb.html' done (0 b/s).
@400000005ec7329e01c713f5 Downloading `derp/derpugoyt/fileup.html' at 0/51186 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c7154a Downloading `derp/derpugoyt/filemkl.html' at 0/52827 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c71677 Downloading `derp/derpugoyt/fileup.html' at 18418/51186 (5 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c71799 Downloading `derp/derpugoyt/fileup.html' at 51186/51186 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c718c6 Downloading `derp/derpugoyt/fileup.html' done (0 b/s).
@400000005ec7329e01c719f2 Downloading `derp/derpugoyt/filemkl.html' at 20059/52827 (294 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c71b0b Downloading `derp/derpugoyt/filemkl.html' at 52827/52827 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c71c37 Downloading `derp/derpugoyt/filemkl.html' done (0 b/s).
@400000005ec7329e01c71d64 Downloading `derp/derpugoyt/filezl.txt' at 0/59611 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c71e86 Downloading `derp/derpugoyt/filecj.txt' at 0/46929 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c71fbd Downloading `derp/derpugoyt/filezl.txt' at 26843/59611 (220 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c720e0 Downloading `derp/derpugoyt/filezl.txt' at 59611/59611 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c7220c Downloading `derp/derpugoyt/filezl.txt' done (0 b/s).
@400000005ec7329e01c7232f Downloading `derp/derpugoyt/filecj.txt' at 14161/46929 (6 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c72447 Downloading `derp/derpugoyt/filecj.txt' at 46929/46929 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c72574 Downloading `derp/derpugoyt/filecj.txt' done (0 b/s).
@400000005ec7329e01c726aa Downloading `derp/derpugoyt.gnd' done (0 b/s).
@400000005ec7329e01c727d7 Downloading `derp/derpk/fileiyvpun.html' at 0/40877 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c728e6 Downloading `derp/derpk/fileiyvpun.html' at 8109/40877 (12 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c72a12 Downloading `derp/derpk/fileiicgv.html' at 0/77834 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c72b35 Downloading `derp/derpk/fileiyvpun.html' at 40877/40877 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c72c61 Downloading `derp/derpk/fileiyvpun.html' done (0 b/s).
@400000005ec7329e01c72d98 Downloading `derp/derpk/fileiicgv.html' at 12298/77834 (16 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c72eb0 Downloading `derp/derpk/fileiicgv.html' at 45066/77834 (131 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c72fe7 Downloading `derp/derpk/fileiicgv.html' at 77834/77834 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c730ff Downloading `derp/derpk/fileiicgv.html' done (0 b/s).
@400000005ec7329e01c7322c Downloading `derp/derpk/fileyfl.html' at 0/58112 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c73345 Downloading `derp/derpk/filecoy.html' at 0/68894 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c73467 Downloading `derp/derpk/fileyfl.html' at 25344/58112 (233 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c7358a Downloading `derp/derpk/fileyfl.html' at 58112/58112 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c736fc Downloading `derp/derpk/fileyfl.html' done (0 b/s).
@400000005ec7329e01c73829 Downloading `derp/derpk/filecoy.html' at 3358/68894 (58 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c7394b Downloading `derp/derpk/filecoy.html' at 36126/68894 (163 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c73a6e Downloading `derp/derpk/filecoy.html' at 68894/68894 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c73b9b Downloading `derp/derpk/filecoy.html' done (0 b/s).
@400000005ec7329e01c73cb3 Downloading `derp/derpk/filev.html' at 0/41405 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c73dc2 Downloading `derp/derpk/fileiwt.txt' at 0/62270 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e01c73ee4 Downloading `derp/derpk/filev.html' at 8637/41405 (11 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b2f509 Downloading `derp/derpk/filev.html' at 41405/41405 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b2fc6f Downloading `derp/derpk/filev.html' done (0 b/s).
@400000005ec7329e02b2fd9c Downloading `derp/derpk/fileiwt.txt' at 29502/62270 (200 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b2fea0 Downloading `derp/derpk/filequom.txt' at 0/52726 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b2ff90 Downloading `derp/derpk/fileiwt.txt' at 62270/62270 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b3008b Downloading `derp/derpk/fileiwt.txt' done (0 b/s).
@400000005ec7329e02b3017b Downloading `derp/derpk/filequom.txt' at 19958/52726 (296 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b3026c Downloading `derp/derpk/filequom.txt' at 52726/52726 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b30352 Downloading `derp/derpk/filequom.txt' done (0 b/s).
@400000005ec7329e02b30439 Downloading `derp/derpk.gnd' done (0 b/s).
@400000005ec7329e02b30529 Downloading `derp/derpxy/filezeukcj.txt' at 0/42353 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b30610 Downloading `derp/derpxy/filexzhyih.txt' at 0/43382 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b30700 Downloading `derp/derpxy/filezeukcj.txt' at 9585/42353 (10 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b307f1 Downloading `derp/derpxy/filezeukcj.txt' at 42353/42353 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b308e1 Downloading `derp/derpxy/filezeukcj.txt' done (0 b/s).
@400000005ec7329e02b309c7 Downloading `derp/derpxy/filexzhyih.txt' at 10614/43382 (9 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b30aa4 Downloading `derp/derpxy/filexzhyih.txt' at 43382/43382 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b30b94 Downloading `derp/derpxy/filexzhyih.txt' done (0 b/s).
@400000005ec7329e02b30c71 Downloading `derp/derpxy/fileculn.txt' at 0/52751 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b30d57 Downloading `derp/derpxy/filejkt.html' at 0/41294 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b30e3e Downloading `derp/derpxy/fileculn.txt' at 19983/52751 (295 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b30f2e Downloading `derp/derpxy/fileculn.txt' at 52751/52751 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b3101e Downloading `derp/derpxy/fileculn.txt' done (0 b/s).
@400000005ec7329e02b31105 Downloading `derp/derpxy/filejkt.html' at 8526/41294 (11 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b311eb Downloading `derp/derpxy/filejkt.html' at 41294/41294 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b312dc Downloading `derp/derpxy/filejkt.html' done (0 b/s).
@400000005ec7329e02b313c2 Downloading `derp/derpxy/filewzizf.html' at 0/65741 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b3149f Downloading `derp/derpxy/filekschj.txt' at 0/69414 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b31585 Downloading `derp/derpxy/filewzizf.html' at 205/65741 (16 h remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b31657 Downloading `derp/derpxy/filewzizf.html' at 32973/65741 (179 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b31734 Downloading `derp/derpxy/filewzizf.html' at 65741/65741 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b31824 Downloading `derp/derpxy/filewzizf.html' done (0 b/s).
@400000005ec7329e02b31915 Downloading `derp/derpxy/filekschj.txt' at 3878/69414 (50 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b319e7 Downloading `derp/derpxy/filekschj.txt' at 36646/69414 (161 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b31ace Downloading `derp/derpxy/filegoi.html' at 0/76023 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b31baa Downloading `derp/derpxy/filekschj.txt' at 69414/69414 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b31c9a Downloading `derp/derpxy/filekschj.txt' done (0 b/s).
@400000005ec7329e02b31d81 Downloading `derp/derpxy/filegoi.html' at 10487/76023 (18 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b31e5d Downloading `derp/derpxy/filegoi.html' at 43255/76023 (136 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b31f44 Downloading `derp/derpxy/filegoi.html' at 76023/76023 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b3202a Downloading `derp/derpxy/filegoi.html' done (0 b/s).
@400000005ec7329e02b32107 Downloading `derp/derpxy/filecvqez.txt' at 0/51007 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b321ed Downloading `derp/derpxy/filebcczb.txt' at 0/64739 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e02b322c9 Downloading `derp/derpxy/filecvqez.txt' at 18239/51007 (5 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a8715c Downloading `derp/derpxy/filecvqez.txt' at 51007/51007 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a87c01 Downloading `derp/derpxy/filecvqez.txt' done (0 b/s).
@400000005ec7329e03a87d37 Downloading `derp/derpxy/filebcczb.txt' at 31971/64739 (184 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a87e32 Downloading `derp/derpxy/filebcczb.txt' at 64739/64739 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a87f36 Downloading `derp/derpxy/filebcczb.txt' done (0 b/s).
@400000005ec7329e03a88031 Downloading `derp/derpxy/filettuohe.txt' at 0/57694 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a88171 Downloading `derp/derpxy/filehy.html' at 0/41088 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a88294 Downloading `derp/derpxy/filettuohe.txt' at 24926/57694 (237 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a8838e Downloading `derp/derpxy/filettuohe.txt' at 57694/57694 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a88493 Downloading `derp/derpxy/filettuohe.txt' done (0 b/s).
@400000005ec7329e03a88597 Downloading `derp/derpxy/filehy.html' at 8320/41088 (11 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a8867e Downloading `derp/derpxy/filehy.html' at 41088/41088 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a8876e Downloading `derp/derpxy/filehy.html' done (0 b/s).
@400000005ec7329e03a88855 Downloading `derp/derpxy/filebcz.txt' at 0/42635 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a88963 Downloading `derp/derpxy/files.html' at 0/47547 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a88a4a Downloading `derp/derpxy/filebcz.txt' at 9867/42635 (9 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a88b6c Downloading `derp/derpxy/files.html' at 14779/47547 (6 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a88c71 Downloading `derp/derpxy/filebcz.txt' at 42635/42635 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a88d61 Downloading `derp/derpxy/filebcz.txt' done (0 b/s).
@400000005ec7329e03a88e66 Downloading `derp/derpxy/files.html' at 47547/47547 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a88f60 Downloading `derp/derpxy/files.html' done (0 b/s).
@400000005ec7329e03a89051 Downloading `derp/derpxy/fileorbh.txt' at 0/44292 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a89137 Downloading `derp/derpxy/fileqp.txt' at 0/43854 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a89228 Downloading `derp/derpxy/fileorbh.txt' at 11524/44292 (8 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a8930e Downloading `derp/derpxy/fileorbh.txt' at 44292/44292 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a893fe Downloading `derp/derpxy/fileorbh.txt' done (0 b/s).
@400000005ec7329e03a894e5 Downloading `derp/derpxy/fileqp.txt' at 11086/43854 (8 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a895c1 Downloading `derp/derpxy/fileqp.txt' at 43854/43854 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a896b2 Downloading `derp/derpxy/fileqp.txt' done (0 b/s).
@400000005ec7329e03a897ac Downloading `derp/derpxy.gnd' done (0 b/s).
@400000005ec7329e03a8989d Downloading `derp/derpm/fileovmpjw.txt' at 0/59606 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a89983 Downloading `derp/derpm/fileplsjny.txt' at 0/41670 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a89a74 Downloading `derp/derpm/fileovmpjw.txt' at 26838/59606 (220 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a89b64 Downloading `derp/derpm/fileovmpjw.txt' at 59606/59606 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a89c4a Downloading `derp/derpm/fileovmpjw.txt' done (0 b/s).
@400000005ec7329e03a89d45 Downloading `derp/derpm/fileplsjny.txt' at 8902/41670 (11 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a89e3f Downloading `derp/derpm/fileplsjny.txt' at 41670/41670 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a89f30 Downloading `derp/derpm/fileplsjny.txt' done (0 b/s).
@400000005ec7329e03a8a016 Downloading `derp/derpm/filebatc.txt' at 0/68561 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a8a0fd Downloading `derp/derpm/filedxbxjr.html' at 0/48030 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a8a1d9 Downloading `derp/derpm/filebatc.txt' at 3025/68561 (65 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a8a2b6 Downloading `derp/derpm/filebatc.txt' at 35793/68561 (165 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a8a39c Downloading `derp/derpm/filedxbxjr.html' at 15262/48030 (6 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a8a478 Downloading `derp/derpm/filedxbxjr.html' at 48030/48030 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e03a8a57d Downloading `derp/derpm/filedxbxjr.html' done (0 b/s).
@400000005ec7329e04818d0d Downloading `derp/derpm/filebatc.txt' at 68561/68561 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e04819581 Downloading `derp/derpm/filebatc.txt' done (0 b/s).
@400000005ec7329e048196d6 Downloading `derp/derpm/fileqtsq.txt' at 0/47536 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e048197d1 Downloading `derp/derpm/filejujd.html' at 0/56494 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e048198c1 Downloading `derp/derpm/fileqtsq.txt' at 14768/47536 (6 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e048199c6 Downloading `derp/derpm/fileqtsq.txt' at 47536/47536 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e04819ac0 Downloading `derp/derpm/fileqtsq.txt' done (0 b/s).
@400000005ec7329e04819bc4 Downloading `derp/derpm/filejujd.html' at 23726/56494 (249 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e04819cb5 Downloading `derp/derpm/filejujd.html' at 56494/56494 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e04819db9 Downloading `derp/derpm/filejujd.html' done (0 b/s).
@400000005ec7329e04819eb4 Downloading `derp/derpm/filebdo.html' at 0/43957 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e04819fa4 Downloading `derp/derpm/filebleg.txt' at 0/74541 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0481a081 Downloading `derp/derpm/filebdo.html' at 11189/43957 (8 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0481a171 Downloading `derp/derpm/filebdo.html' at 43957/43957 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0481a26c Downloading `derp/derpm/filebdo.html' done (0 b/s).
@400000005ec7329e0481a352 Downloading `derp/derpm/filebleg.txt' at 9005/74541 (21 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0481a443 Downloading `derp/derpm/filebleg.txt' at 41773/74541 (141 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0481a529 Downloading `derp/derpm/filebleg.txt' at 74541/74541 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0481a623 Downloading `derp/derpm/filebleg.txt' done (0 b/s).
@400000005ec7329e0481a714 Downloading `derp/derpm/fileohe.txt' at 0/41138 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0481a804 Downloading `derp/derpm/filem.txt' at 0/50028 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0481a8f5 Downloading `derp/derpm/fileohe.txt' at 8370/41138 (11 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0481a9db Downloading `derp/derpm/filem.txt' at 17260/50028 (5 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0481aacc Downloading `derp/derpm/fileohe.txt' at 41138/41138 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0481abc6 Downloading `derp/derpm/fileohe.txt' done (0 b/s).
@400000005ec7329e0481acb7 Downloading `derp/derpm/filem.txt' at 50028/50028 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0481adb1 Downloading `derp/derpm/filem.txt' done (0 b/s).
@400000005ec7329e0481ae98 Downloading `derp/derpm/files.txt' at 0/43117 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0481af88 Downloading `derp/derpm/fileix.txt' at 0/79166 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0481b078 Downloading `derp/derpm/files.txt' at 10349/43117 (9 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0481b15f Downloading `derp/derpm/fileix.txt' at 13630/79166 (14 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0481b259 Downloading `derp/derpm/files.txt' at 43117/43117 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0481b34a Downloading `derp/derpm/files.txt' done (0 b/s).
@400000005ec7329e0481b43a Downloading `derp/derpm/fileix.txt' at 46398/79166 (127 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0481b53f Downloading `derp/derpm/fileix.txt' at 79166/79166 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0481b62f Downloading `derp/derpm/fileix.txt' done (0 b/s).
@400000005ec7329e0481b720 Downloading `derp/derpm/filebb.txt' at 0/68541 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0481b806 Downloading `derp/derpofjw/fileizenqh.txt' at 0/44743 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0481b8f7 Downloading `derp/derpm/filebb.txt' at 3005/68541 (65 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0481b9dd Downloading `derp/derpm/filebb.txt' at 35773/68541 (165 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0481bacd Downloading `derp/derpofjw/fileizenqh.txt' at 11975/44743 (8 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0481bbe6 Downloading `derp/derpofjw/fileizenqh.txt' at 44743/44743 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0481bcea Downloading `derp/derpofjw/fileizenqh.txt' done (0 b/s).
@400000005ec7329e0481bdef Downloading `derp/derpm/filebb.txt' at 68541/68541 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e6515 Downloading `derp/derpm/filebb.txt' done (0 b/s).
@400000005ec7329e056e6e33 Downloading `derp/derpm.gnd' done (0 b/s).
@400000005ec7329e056e6f7e Downloading `derp/derpofjw/filefsxsee.txt' at 0/51791 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e7078 Downloading `derp/derpofjw/filezcxo.txt' at 0/73905 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e715e Downloading `derp/derpofjw/filefsxsee.txt' at 19023/51791 (5 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e7263 Downloading `derp/derpofjw/filefsxsee.txt' at 51791/51791 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e73a4 Downloading `derp/derpofjw/filefsxsee.txt' done (0 b/s).
@400000005ec7329e056e74b2 Downloading `derp/derpofjw/filezcxo.txt' at 8369/73905 (23 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e75c1 Downloading `derp/derpofjw/filezcxo.txt' at 41137/73905 (143 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e76bb Downloading `derp/derpofjw/fileynfko.txt' at 0/51729 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e77a1 Downloading `derp/derpofjw/filezcxo.txt' at 73905/73905 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e789c Downloading `derp/derpofjw/filezcxo.txt' done (0 b/s).
@400000005ec7329e056e79a0 Downloading `derp/derpofjw/fileynfko.txt' at 18961/51729 (5 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e7a87 Downloading `derp/derpofjw/fileynfko.txt' at 51729/51729 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e7b8b Downloading `derp/derpofjw/fileynfko.txt' done (0 b/s).
@400000005ec7329e056e7c86 Downloading `derp/derpofjw/filerbf.txt' at 0/72466 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e7d6c Downloading `derp/derpofjw/filemvv.html' at 0/63086 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e7e53 Downloading `derp/derpofjw/filerbf.txt' at 6930/72466 (28 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e7f43 Downloading `derp/derpofjw/filerbf.txt' at 39698/72466 (148 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e8034 Downloading `derp/derpofjw/filemvv.html' at 30318/63086 (194 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e811a Downloading `derp/derpofjw/filerbf.txt' at 72466/72466 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e8215 Downloading `derp/derpofjw/filerbf.txt' done (0 b/s).
@400000005ec7329e056e82fb Downloading `derp/derpofjw/filemvv.html' at 63086/63086 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e83eb Downloading `derp/derpofjw/filemvv.html' done (0 b/s).
@400000005ec7329e056e84f0 Downloading `derp/derpofjw/fileb.html' at 0/62199 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e85d6 Downloading `derp/derpofjw/filexk.txt' at 0/48561 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e86c7 Downloading `derp/derpofjw/fileb.html' at 29431/62199 (200 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e87a3 Downloading `derp/derpofjw/filexk.txt' at 15793/48561 (6 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e8894 Downloading `derp/derpofjw/fileb.html' at 62199/62199 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e898e Downloading `derp/derpofjw/fileb.html' done (0 b/s).
@400000005ec7329e056e8a6b Downloading `derp/derpofjw/filexk.txt' at 48561/48561 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e8b65 Downloading `derp/derpofjw/filexk.txt' done (0 b/s).
@400000005ec7329e056e8c4b Downloading `derp/derpofjw/filed.txt' at 0/66870 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e8d32 Downloading `derp/derpofjw/fileahwn.html' at 0/59605 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e8e0e Downloading `derp/derpofjw/filed.txt' at 1334/66870 (147 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e8eff Downloading `derp/derpofjw/filed.txt' at 34102/66870 (173 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e8fe5 Downloading `derp/derpofjw/fileahwn.html' at 26837/59605 (220 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e90c2 Downloading `derp/derpofjw/fileahwn.html' at 59605/59605 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e91bc Downloading `derp/derpofjw/fileahwn.html' done (0 b/s).
@400000005ec7329e056e92a2 Downloading `derp/derpofjw/filed.txt' at 66870/66870 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e9393 Downloading `derp/derpofjw/filed.txt' done (0 b/s).
@400000005ec7329e056e9479 Downloading `derp/derpofjw/filea.txt' at 0/53859 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e056e9574 Downloading `derp/derpe/filezmfa.txt' at 0/41216 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e06637f03 Downloading `derp/derpofjw/filea.txt' at 21091/53859 (280 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e06638763 Downloading `derp/derpofjw/filea.txt' at 53859/53859 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0663889a Downloading `derp/derpofjw/filea.txt' done (0 b/s).
@400000005ec7329e0663899f Downloading `derp/derpofjw.gnd' done (0 b/s).
@400000005ec7329e06638aad Downloading `derp/derpe/filezmfa.txt' at 8448/41216 (11 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e06638ba7 Downloading `derp/derpe/filegrdolq.html' at 0/46837 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e06638ca2 Downloading `derp/derpe/filezmfa.txt' at 41216/41216 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e06638d92 Downloading `derp/derpe/filezmfa.txt' done (0 b/s).
@400000005ec7329e06638e79 Downloading `derp/derpe/filegrdolq.html' at 14069/46837 (7 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e06638f55 Downloading `derp/derpe/filevdax.txt' at 0/67762 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0663903c Downloading `derp/derpe/filegrdolq.html' at 46837/46837 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0663912c Downloading `derp/derpe/filegrdolq.html' done (0 b/s).
@400000005ec7329e06639209 Downloading `derp/derpe/filevdax.txt' at 2226/67762 (88 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e066392ef Downloading `derp/derpe/filevdax.txt' at 34994/67762 (168 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e066393d5 Downloading `derp/derpe/filevdax.txt' at 67762/67762 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e066394bc Downloading `derp/derpe/filevdax.txt' done (0 b/s).
@400000005ec7329e066395ac Downloading `derp/derpe/filelxj.txt' at 0/46157 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0663969d Downloading `derp/derpe/filepajq.html' at 0/79046 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e06639783 Downloading `derp/derpe/filelxj.txt' at 13389/46157 (7 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0663986a Downloading `derp/derpe/filelxj.txt' at 46157/46157 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e06639946 Downloading `derp/derpe/filelxj.txt' done (0 b/s).
@400000005ec7329e06639a2c Downloading `derp/derpe/filepajq.html' at 13510/79046 (14 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e06639b59 Downloading `derp/derpe/filepajq.html' at 46278/79046 (127 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e06639c54 Downloading `derp/derpe/filerus.txt' at 0/48571 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e06639d44 Downloading `derp/derpe/filepajq.html' at 79046/79046 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e06639e34 Downloading `derp/derpe/filepajq.html' done (0 b/s).
@400000005ec7329e06639f1b Downloading `derp/derpe/filerus.txt' at 15803/48571 (6 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e06639ff7 Downloading `derp/derpe/filerus.txt' at 48571/48571 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0663a0de Downloading `derp/derpe/filerus.txt' done (0 b/s).
@400000005ec7329e0663a1c4 Downloading `derp/derpe/filejei.txt' at 0/52251 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0663a2ab Downloading `derp/derpe/filevrh.txt' at 0/79005 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0663a387 Downloading `derp/derpe/filejei.txt' at 19483/52251 (5 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0663a463 Downloading `derp/derpe/filejei.txt' at 52251/52251 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0663a54a Downloading `derp/derpe/filejei.txt' done (0 b/s).
@400000005ec7329e0663a626 Downloading `derp/derpe/filevrh.txt' at 13469/79005 (14 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0663a703 Downloading `derp/derpe/filevrh.txt' at 46237/79005 (127 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0663a7e9 Downloading `derp/derpe/filevrh.txt' at 79005/79005 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0663a8d0 Downloading `derp/derpe/filevrh.txt' done (0 b/s).
@400000005ec7329e0663a9c0 Downloading `derp/derpe.gnd' done (0 b/s).
@400000005ec7329e0663aaa6 Downloading `derp/derpq/filejyeot.html' at 0/44649 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0663ab79 Downloading `derp/derpq/fileavhtw.txt' at 0/47203 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0663ac55 Downloading `derp/derpq/filejyeot.html' at 11881/44649 (8 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0663ad32 Downloading `derp/derpq/fileavhtw.txt' at 14435/47203 (6 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0663ae0e Downloading `derp/derpq/filejyeot.html' at 44649/44649 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0663aeff Downloading `derp/derpq/filejyeot.html' done (0 b/s).
@400000005ec7329e0747a6ee Downloading `derp/derpq/fileavhtw.txt' at 47203/47203 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747b26f Downloading `derp/derpq/fileavhtw.txt' done (0 b/s).
@400000005ec7329e0747b414 Downloading `derp/derpq/filed.html' at 0/51599 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747b573 Downloading `derp/derpq/filerxw.txt' at 0/42868 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747b6d1 Downloading `derp/derpq/filed.html' at 18831/51599 (5 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747b830 Downloading `derp/derpq/filed.html' at 51599/51599 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747b9f3 Downloading `derp/derpq/filed.html' done (0 b/s).
@400000005ec7329e0747bb6f Downloading `derp/derpq/filerxw.txt' at 10100/42868 (9 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747bcc4 Downloading `derp/derpq/filerxw.txt' at 42868/42868 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747be2d Downloading `derp/derpq/filerxw.txt' done (0 b/s).
@400000005ec7329e0747bf81 Downloading `derp/derpq/filettzj.txt' at 0/40478 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747c0d6 Downloading `derp/derpq/fileouko.txt' at 0/41750 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747c221 Downloading `derp/derpq/filettzj.txt' at 7710/40478 (12 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747c375 Downloading `derp/derpq/filettzj.txt' at 40478/40478 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747c4ca Downloading `derp/derpq/filettzj.txt' done (0 b/s).
@400000005ec7329e0747c629 Downloading `derp/derpq/fileouko.txt' at 8982/41750 (10 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747c77d Downloading `derp/derpq/fileouko.txt' at 41750/41750 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747c8be Downloading `derp/derpq/fileouko.txt' done (0 b/s).
@400000005ec7329e0747c9fe Downloading `derp/derpq.gnd' done (0 b/s).
@400000005ec7329e0747cb5d Downloading `derp/derpvwghqx/filesxexdd.txt' at 0/50144 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747ccbc Downloading `derp/derpvwghqx/filexpx.txt' at 0/52523 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747cdfc Downloading `derp/derpvwghqx/filesxexdd.txt' at 17376/50144 (5 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747cf47 Downloading `derp/derpvwghqx/filexpx.txt' at 19755/52523 (299 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747d07e Downloading `derp/derpvwghqx/filesxexdd.txt' at 50144/50144 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747d1d2 Downloading `derp/derpvwghqx/filesxexdd.txt' done (0 b/s).
@400000005ec7329e0747d331 Downloading `derp/derpvwghqx/filexpx.txt' at 52523/52523 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747d47c Downloading `derp/derpvwghqx/filexpx.txt' done (0 b/s).
@400000005ec7329e0747d5c6 Downloading `derp/derpvwghqx/filewed.html' at 0/72876 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747d707 Downloading `derp/derpvwghqx/filewvca.html' at 0/41784 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747d847 Downloading `derp/derpvwghqx/filewed.html' at 7340/72876 (26 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747d988 Downloading `derp/derpvwghqx/filewed.html' at 40108/72876 (147 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747dad3 Downloading `derp/derpvwghqx/filewvca.html' at 9016/41784 (10 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747dc27 Downloading `derp/derpvwghqx/filewvca.html' at 41784/41784 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747dd72 Downloading `derp/derpvwghqx/filewvca.html' done (0 b/s).
@400000005ec7329e0747deb2 Downloading `derp/derpvwghqx/filewed.html' at 72876/72876 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747e011 Downloading `derp/derpvwghqx/filewed.html' done (0 b/s).
@400000005ec7329e0747e170 Downloading `derp/derpvwghqx/fileqj.txt' at 0/50163 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747e2b0 Downloading `derp/derpjrihd/fileebqixz.html' at 0/46069 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747e3fb Downloading `derp/derpvwghqx/fileqj.txt' at 17395/50163 (5 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747e53c Downloading `derp/derpvwghqx/fileqj.txt' at 50163/50163 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747e67c Downloading `derp/derpvwghqx/fileqj.txt' done (0 b/s).
@400000005ec7329e0747e7c7 Downloading `derp/derpvwghqx.gnd' done (0 b/s).
@400000005ec7329e0747e925 Downloading `derp/derpjrihd/fileebqixz.html' at 13301/46069 (7 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0747ea66 Downloading `derp/derpjrihd/fileyj.txt' at 0/42661 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e4dc8 Downloading `derp/derpjrihd/fileebqixz.html' at 46069/46069 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e58ef Downloading `derp/derpjrihd/fileebqixz.html' done (0 b/s).
@400000005ec7329e083e5a30 Downloading `derp/derpjrihd/fileyj.txt' at 9893/42661 (9 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e5b5c Downloading `derp/derpjrihd/fileyj.txt' at 42661/42661 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e5c7f Downloading `derp/derpjrihd/fileyj.txt' done (0 b/s).
@400000005ec7329e083e5d83 Downloading `derp/derpjrihd/fileh.txt' at 0/72830 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e5e60 Downloading `derp/derpjrihd/filecdp.txt' at 0/41458 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e5f32 Downloading `derp/derpjrihd/fileh.txt' at 7294/72830 (27 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e6019 Downloading `derp/derpjrihd/filecdp.txt' at 8690/41458 (11 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e60f5 Downloading `derp/derpjrihd/fileh.txt' at 40062/72830 (147 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e61db Downloading `derp/derpjrihd/filecdp.txt' at 41458/41458 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e62c2 Downloading `derp/derpjrihd/filecdp.txt' done (0 b/s).
@400000005ec7329e083e639e Downloading `derp/derpjrihd/fileh.txt' at 72830/72830 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e648f Downloading `derp/derpjrihd/fileh.txt' done (0 b/s).
@400000005ec7329e083e6575 Downloading `derp/derpjrihd.gnd' done (0 b/s).
@400000005ec7329e083e6652 Downloading `derp/derprgqnh/fileiwndlm.html' at 0/53037 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e6742 Downloading `derp/derprgqnh/filecuost.html' at 0/74275 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e6829 Downloading `derp/derprgqnh/fileiwndlm.html' at 20269/53037 (291 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e6905 Downloading `derp/derprgqnh/fileiwndlm.html' at 53037/53037 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e69f5 Downloading `derp/derprgqnh/fileiwndlm.html' done (0 b/s).
@400000005ec7329e083e6ac8 Downloading `derp/derprgqnh/filecuost.html' at 8739/74275 (22 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e6bb8 Downloading `derp/derprgqnh/filecuost.html' at 41507/74275 (142 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e6c95 Downloading `derp/derprgqnh/filecuost.html' at 74275/74275 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e6d85 Downloading `derp/derprgqnh/filecuost.html' done (0 b/s).
@400000005ec7329e083e6e62 Downloading `derp/derprgqnh/fileyfh.txt' at 0/49070 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e6f34 Downloading `derp/derprgqnh/filef.txt' at 0/49367 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e701a Downloading `derp/derprgqnh/fileyfh.txt' at 16302/49070 (6 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e70f7 Downloading `derp/derprgqnh/fileyfh.txt' at 49070/49070 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e71dd Downloading `derp/derprgqnh/fileyfh.txt' done (0 b/s).
@400000005ec7329e083e72ce Downloading `derp/derprgqnh/filef.txt' at 16599/49367 (5 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e73aa Downloading `derp/derprgqnh/filef.txt' at 49367/49367 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e749b Downloading `derp/derprgqnh/filef.txt' done (0 b/s).
@400000005ec7329e083e7581 Downloading `derp/derprgqnh.gnd' done (0 b/s).
@400000005ec7329e083e7667 Downloading `derp/derpu/filerexcel.txt' at 0/68328 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e7744 Downloading `derp/derpu/fileijnqcg.txt' at 0/47193 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e7816 Downloading `derp/derpu/filerexcel.txt' at 2792/68328 (70 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e78fd Downloading `derp/derpu/filerexcel.txt' at 35560/68328 (166 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e79e3 Downloading `derp/derpu/fileijnqcg.txt' at 14425/47193 (6 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e7abf Downloading `derp/derpu/filerexcel.txt' at 68328/68328 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e7ba6 Downloading `derp/derpu/filerexcel.txt' done (0 b/s).
@400000005ec7329e083e7c82 Downloading `derp/derpu/fileijnqcg.txt' at 47193/47193 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e7d7d Downloading `derp/derpu/fileijnqcg.txt' done (0 b/s).
@400000005ec7329e083e7e4f Downloading `derp/derpu/filejvpegj.html' at 0/66509 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e083e7f36 Downloading `derp/derpsmhhgy/filezgpl.txt' at 0/64816 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f0c69 Downloading `derp/derpu/filejvpegj.html' at 973/66509 (202 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f14f1 Downloading `derp/derpsmhhgy/filezgpl.txt' at 32048/64816 (184 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f1609 Downloading `derp/derpu/filejvpegj.html' at 33741/66509 (175 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f16fa Downloading `derp/derpsmhhgy/filezgpl.txt' at 64816/64816 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f17f4 Downloading `derp/derpsmhhgy/filezgpl.txt' done (0 b/s).
@400000005ec7329e091f1949 Downloading `derp/derpu/filejvpegj.html' at 66509/66509 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f1a6b Downloading `derp/derpu/filejvpegj.html' done (0 b/s).
@400000005ec7329e091f1b52 Downloading `derp/derpu.gnd' done (0 b/s).
@400000005ec7329e091f1c56 Downloading `derp/derpsmhhgy/filevxkc.txt' at 0/46535 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f1d3d Downloading `derp/derpsmhhgy/fileepb.html' at 0/43203 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f1e2d Downloading `derp/derpwuk/fileaup.html' at 0/59734 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f1f14 Downloading `derp/derpsmhhgy/filevxkc.txt' at 13767/46535 (7 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f2004 Downloading `derp/derpsmhhgy/fileepb.html' at 10435/43203 (9 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f20e1 Downloading `derp/derpsmhhgy/filevxkc.txt' at 46535/46535 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f21db Downloading `derp/derpsmhhgy/filevxkc.txt' done (0 b/s).
@400000005ec7329e091f22d6 Downloading `derp/derpwuk/fileaup.html' at 26966/59734 (219 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f23bc Downloading `derp/derpsmhhgy/fileepb.html' at 43203/43203 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f24ac Downloading `derp/derpsmhhgy/fileepb.html' done (0 b/s).
@400000005ec7329e091f25a7 Downloading `derp/derpsmhhgy.gnd' done (0 b/s).
@400000005ec7329e091f268d Downloading `derp/derpwuk/filep.txt' at 0/68162 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f2774 Downloading `derp/derpwuk/fileaup.html' at 59734/59734 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f2864 Downloading `derp/derpwuk/fileaup.html' done (0 b/s).
@400000005ec7329e091f2955 Downloading `derp/derpl/filevy.html' at 0/41470 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f2a31 Downloading `derp/derpl/filep.txt' at 0/67230 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f2b22 Downloading `derp/derpwuk/filep.txt' at 2626/68162 (75 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f2d7b Downloading `derp/derpqtdndc/filef.html' at 0/46001 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f2e6b Downloading `derp/derpwuk/filep.txt' at 35394/68162 (167 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f2f8e Downloading `derp/derpl/filevy.html' at 8702/41470 (11 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f30ba Downloading `derp/derpwuk/filep.txt' at 68162/68162 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f31bf Downloading `derp/derpwuk/filep.txt' done (0 b/s).
@400000005ec7329e091f32e1 Downloading `derp/derpwuk.gnd' done (0 b/s).
@400000005ec7329e091f340e Downloading `derp/derpl/filep.txt' at 1694/67230 (116 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f356c Downloading `derp/derpqtdndc/filef.html' at 13233/46001 (7 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f36cb Downloading `derp/derpl/filevy.html' at 41470/41470 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f3834 Downloading `derp/derpl/filevy.html' done (0 b/s).
@400000005ec7329e091f39c5 Downloading `derp/derpl/filep.txt' at 34462/67230 (171 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f3b4b Downloading `derp/derpqtdndc/filef.html' at 46001/46001 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f3caa Downloading `derp/derpqtdndc/filef.html' done (0 b/s).
@400000005ec7329e091f3df5 Downloading `derp/derpl/filep.txt' at 67230/67230 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f3f3f Downloading `derp/derpl/filep.txt' done (0 b/s).
@400000005ec7329e091f406c Downloading `derp/derpl.gnd' done (0 b/s).
@400000005ec7329e091f4198 Downloading `derp/derpqtdndc/fileonuk.html' at 0/52436 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f42cf Downloading `derp/derpinqqde/filehhsko.html' at 0/43100 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f4410 Downloading `derp/derpinqqde/filery.html' at 0/52350 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e091f45d2 Downloading `derp/derpuz/filepeqi.txt' at 0/61751 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a16657d Downloading `derp/derpv/fileeku.txt' at 0/48194 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a166af8 Downloading `derp/derpeg/filemdhsei.txt' at 0/70316 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a166c24 Downloading `derp/derpinqqde/filehhsko.html' at 10332/43100 (9 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a166d65 Downloading `derp/derpqtdndc/fileonuk.html' at 19668/52436 (5 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a166e7d Downloading `derp/derpinqqde/filery.html' at 19582/52350 (5 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a166fa0 Downloading `derp/derpuz/filepeqi.txt' at 28983/61751 (204 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a1670b8 Downloading `derp/derpinqqde/filehhsko.html' at 43100/43100 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a1671f9 Downloading `derp/derpinqqde/filehhsko.html' done (0 b/s).
@400000005ec7329e0a167330 Downloading `derp/derpinqqde/filery.html' at 52350/52350 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a16745c Downloading `derp/derpinqqde/filery.html' done (0 b/s).
@400000005ec7329e0a167575 Downloading `derp/derpinqqde.gnd' done (0 b/s).
@400000005ec7329e0a1676a1 Downloading `derp/derpv/fileeku.txt' at 15426/48194 (6 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a1677c4 Downloading `derp/derpeg/filemdhsei.txt' at 4780/70316 (41 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a1678fa Downloading `derp/derpuz/filepeqi.txt' at 61751/61751 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a167a31 Downloading `derp/derpuz/filepeqi.txt' done (0 b/s).
@400000005ec7329e0a167b53 Downloading `derp/derpuz.gnd' done (0 b/s).
@400000005ec7329e0a167c76 Downloading `derp/derpqtdndc/fileonuk.html' at 52436/52436 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a167d8f Downloading `derp/derpqtdndc/fileonuk.html' done (0 b/s).
@400000005ec7329e0a167ea7 Downloading `derp/derpqtdndc.gnd' done (0 b/s).
@400000005ec7329e0a167fde Downloading `derp/derpwrhrg/filecayl.txt' at 0/45560 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a16810a Downloading `derp/derpjb/filejcfs.txt' at 0/41067 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a168223 Downloading `derp/derpa/filezxadu.html' at 0/46595 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a168331 Downloading `derp/derpeg/filemdhsei.txt' at 37548/70316 (157 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a16844a Downloading `derp/derpv/fileeku.txt' at 48194/48194 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a168576 Downloading `derp/derpv/fileeku.txt' done (0 b/s).
@400000005ec7329e0a16868f Downloading `derp/derpv.gnd' done (0 b/s).
@400000005ec7329e0a1687c5 Downloading `derp/derpeg/filemdhsei.txt' at 70316/70316 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a1688f2 Downloading `derp/derpeg/filemdhsei.txt' done (0 b/s).
@400000005ec7329e0a168a01 Downloading `derp/derpeg.gnd' done (0 b/s).
@400000005ec7329e0a168b2d Downloading `derp/derpc/fileejgazd.txt' at 0/72136 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a168c64 Downloading `derp/derpposqb/fileq.html' at 0/41458 (forever remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a168d90 Downloading `derp/derpwrhrg/filecayl.txt' at 12792/45560 (7 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a168ea9 Downloading `derp/derpjb/filejcfs.txt' at 8299/41067 (11 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a168fc1 Downloading `derp/derpa/filezxadu.html' at 13827/46595 (7 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a1690da Downloading `derp/derpc/fileejgazd.txt' at 6600/72136 (29 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a1691fc Downloading `derp/derpwrhrg/filecayl.txt' at 45560/45560 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a16931f Downloading `derp/derpwrhrg/filecayl.txt' done (0 b/s).
@400000005ec7329e0a169456 Downloading `derp/derpwrhrg.gnd' done (0 b/s).
@400000005ec7329e0a16956e Downloading `derp/derpjb/filejcfs.txt' at 41067/41067 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a16969b Downloading `derp/derpjb/filejcfs.txt' done (0 b/s).
@400000005ec7329e0a1697c7 Downloading `derp/derpjb.gnd' done (0 b/s).
@400000005ec7329e0a1698f4 Downloading `derp/derpa/filezxadu.html' at 46595/46595 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a169a20 Downloading `derp/derpa/filezxadu.html' done (0 b/s).
@400000005ec7329e0a169b39 Downloading `derp/derpa.gnd' done (0 b/s).
@400000005ec7329e0a169c65 Downloading `derp/derpposqb/fileq.html' at 8690/41458 (11 m remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a169d88 Downloading `derp/derpc/fileejgazd.txt' at 39368/72136 (150 s remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a169eb5 Downloading `derp/derpc/fileejgazd.txt' at 72136/72136 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a3db3f7 Downloading `derp/derpc/fileejgazd.txt' done (0 b/s).
@400000005ec7329e0a3db7b9 Downloading `derp/derpc.gnd' done (0 b/s).
@400000005ec7329e0a3db8e6 Downloading `derp/derpposqb/fileq.html' at 41458/41458 (0 ms remaining, 0 b/s). Block took 0 ms to download
@400000005ec7329e0a3db9ea Downloading `derp/derpposqb/fileq.html' done (0 b/s).
@400000005ec7329e0a3dbae4 Downloading `derp/derpposqb.gnd' done (0 b/s).
@400000005ec7329e0a3dbbdf Downloading `derp.gnd' done (0 b/s).
dl2.log (138,999 bytes)   

cy1

2020-05-22 06:11

reporter   ~0015940

Oh another problem with removing indexed files is you'll get endless error messages in your logs, trying and failing about once a second like:

May 22 04:01:51-376176 fs-28169 ERROR Assertion failed at gnunet-service-fs_indexing.c:303.
May 22 04:01:51-376211 fs-28169 ERROR Failed to find index M20F56KN

If you cannot recreate the file whose hash is M20F56KN, it just reports that error over and over again ad infinitum. For every file that is supposed to be indexed, but was deleted. I don't know if it ever gets tired of doing that. Removing idxinfo.lst doesn't seem to stop it from these endless attempts. Whatever calls GNUNET_FS_handle_on_demand_block does not even log what it's doing at the DEBUG level, so the above error messages are just back to back, without context, one after the other. I could attach gdb I suppose...

cy1

2020-06-05 05:25

reporter   ~0016231

Well this is interesting. ...I'm still clueless as to why, but while gnunet-download freezes on downloading that test data, even when indexed, gnunet-fs-gtk does NOT freeze.

gnunet-fs-gtk downloads the data instantly, so whatever's causing the unnecessary delay, it must be in gnunet-download, but not in gnunet-fs-gtk (which has download functionality).

Issue History

Date Modified Username Field Change
2020-04-30 09:23 cy1 New Issue
2020-04-30 09:23 cy1 File Added: testdata.tar.xz
2020-04-30 09:23 cy1 File Added: make_dumb_directory_tree.c
2020-04-30 09:25 cy1 Note Added: 0015812
2020-05-06 18:09 schanzen Assigned To => Christian Grothoff
2020-05-06 18:09 schanzen Status new => assigned
2020-05-06 18:10 schanzen Note Added: 0015863
2020-05-13 03:30 cy1 Note Added: 0015886
2020-05-15 05:41 cy1 Note Added: 0015892
2020-05-17 19:27 cy1 Note Added: 0015929
2020-05-17 21:38 cy1 Note Added: 0015930
2020-05-20 01:37 cy1 File Added: make_dumb_directory_tree-2.c
2020-05-20 01:37 cy1 File Added: testdata.tar-2.xz
2020-05-20 01:37 cy1 File Added: dl.log
2020-05-20 01:37 cy1 Note Added: 0015933
2020-05-22 04:28 cy1 File Added: make_dumb_directory_tree-3.c
2020-05-22 04:28 cy1 File Added: dl2.log
2020-05-22 04:28 cy1 Note Added: 0015939
2020-05-22 06:11 cy1 Note Added: 0015940
2020-06-01 00:49 Adminknox Issue cloned: 0006278
2020-06-05 05:25 cy1 Note Added: 0016231