-
Notifications
You must be signed in to change notification settings - Fork 1
/
posts.txt
25239 lines (25239 loc) · 857 KB
/
posts.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1|Licho|0|0|1289261553000||
2|Licho|0|0|1289262655000||
3|Ajhskdkfkjshdfks|0|0|1289266698000||
4|Licho|0|0|1289268270000||
5|maackey|0|0|1289362832000||
6|maackey|0|0|1289362979000||
7|maackey|0|0|1289363155000||
8|maackey|0|0|1289363226000||
9|maackey|0|0|1289363297000||
10|Licho|0|0|1289384971000||
11|GoogleFrog|0|0|1289480306000||
12|Licho|0|0|1289491497000||
13|Licho|0|0|1289569747000||
14|luckywaldo7|0|0|1289609487000||
15|GoogleFrog|0|0|1289626454000||
16|Licho|0|0|1289756895000||
17|Licho|0|0|1289756917000||
18|Mopar|0|0|1289781321000||
19|Licho|0|0|1289782052000||
20|Licho|0|0|1289823252000||
21|AdmiralVortex|0|0|1289842941000||
22|Skasi|0|0|1290115984000||
23|Skasi|0|0|1290116013000||
24|Skasi|0|0|1290116077000||
25|DoctorScience2|0|0|1290319656000||
26|GoogleFrog|0|0|1290339072000||
27|GoogleFrog|0|0|1290342767000||
28|GoogleFrog|0|0|1290345189000||
29|Mopar|0|0|1290477271000||
30|Licho|0|0|1290515963000||
31|Saktoth|0|0|1290906556000||
32|[GETTER]Smoke_Fumus|0|0|1290947830000||
33|[GETTER]Smoke_Fumus|0|0|1290948618000||
34|[PinK]triton|0|0|1290999896000||
35|Licho|0|0|1291063641000||
36|Rafal[ZK]|0|0|1291068290000||
37|[PinK]triton|0|0|1291069356000||
38|CarRepairer|0|0|1291082140000||
39|granade|0|0|1291824894000||
40|Hruks|0|0|1291852677000||
41|lordfwahfnah|0|0|1292018318000||
42|[cs]DeadShawn|0|0|1292911810000||
43|exciter[0K]|0|0|1293110502000||
44|exciter[0K]|0|0|1293126486000||
45|[LOeT]HeRow|0|0|1293151618000||
46|exciter[0K]|0|0|1293184554000||
47|Sir|0|0|1293376995000||
48|kernelsandirs|0|0|1293436234000||
49|Skasi|0|0|1293460796000||
50|Sir|0|0|1293463764000||
51|Aronath|0|0|1293491569000||
52|exciter[0K]|0|0|1293547110000||
53|exciter[0K]|0|0|1293547228000||
54|Sir|0|0|1293577259000||
55|Rafal[ZK]|0|0|1293626547000||
56|Rafal[ZK]|0|0|1293626601000||
57|Dylock|0|0|1293657131000||
58|Sir|0|0|1293747665000||
59|Falelovsy|0|0|1293983784000||
60|drankof|0|0|1294019771000||
61|drankof|0|0|1294046117000||
62|test_account|0|0|1294155594000||
63|Licho|0|0|1294158335000||
64|Licho|2|0|1294162998000|GoogleFrog;Connetable;|
65|Licho|1|0|1294164355000|Klon;|
66|luckywaldo7|1|0|1294164476000|mojjj;|
67|Exploder|0|0|1294185140000||
68|Licho|0|0|1294194484000||
69|Licho|0|0|1294194509000||
70|Licho|0|0|1294228201000||
71|BattleCruiser|0|0|1294294385000||
72|[Dr]Bamiblok|0|0|1294329821000||
73|Collserra|0|0|1294345789000||
74|Exploder|0|0|1294373684000||
75|Falelovsy|0|0|1294375590000||
76|chicagomen|0|0|1294400910000||
77|exciter[0K]|0|0|1294425667000||
78|exciter[0K]|0|0|1294427151000||
79|Licho|0|0|1294432127000||
80|exciter[0K]|0|0|1294477614000||
81|exciter[0K]|0|0|1294489208000||
82|exciter[0K]|0|0|1294489241000||
83|bluewinged|0|0|1294504859000||
84|bluewinged|0|0|1294504940000||
85|bluewinged|0|0|1294504950000||
86|bluewinged|0|0|1294504956000||
87|exciter[0K]|0|0|1294509153000||
88|bluewinged|0|0|1294509534000||
89|bluewinged|0|0|1294509559000||
90|bluewinged|0|0|1294509644000||
91|bluewinged|0|0|1294511000000||
92|bluewinged|0|0|1294511900000||
93|Licho|0|0|1294515673000||
94|bluewinged|0|0|1294520012000||
95|bluewinged|0|0|1294520367000||
96|juik69|0|0|1294557871000||
97|juik69|0|1|1294557901000||_Shaman;
98|exciter[0K]|0|0|1294560143000||
99|GoogleFrog|0|0|1294570413000||
100|exciter[0K]|0|0|1294572272000||
101|bluewinged|0|0|1294574529000||
102|bluewinged|0|0|1294575049000||
103|exciter[0K]|0|0|1294581242000||
104|janay|0|0|1294701376000||
105|wwe|0|0|1294705118000||
106|exciter[0K]|0|0|1294581242000||
107|exciter[0K]|0|0|1294581242000||
108|exciter[0K]|0|0|1294581242000||
109|exciter[0K]|0|0|1294581242000||
110|BennyG|0|0|1294982185000||
111|Licho|0|0|1295007307000||
112|exciter[0K]|0|0|1295026890000||
113|pphillips001|0|0|1295125826000||
114|FarShot83|0|0|1295185318000||
115|exciter[0K]|0|0|1294581242000||
116|luckywaldo7|0|0|1295272082000||
117|luckywaldo7|0|0|1295283952000||
118|luckywaldo7|0|0|1295283990000||
119|luckywaldo7|0|0|1295284016000||
120|luckywaldo7|0|0|1295284033000||
121|luckywaldo7|0|0|1295284113000||
122|luckywaldo7|0|0|1295284211000||
123|exciter[0K]|0|0|1295508435000||
124|Licho|0|0|1295543104000||
125|unsword|0|0|1295543562000||
126|exciter[0K]|0|0|1294581242000||
127|vladew|0|0|1295604389000||
128|SimionPadawan|0|0|1295619155000||
129|Aristoi|0|0|1295621174000||
130|exciter[0K]|0|0|1295685243000||
131|SimionPadawan|0|0|1295690371000||
132|SimionPadawan|0|0|1295690374000||
133|SimionPadawan|0|0|1295690377000||
134|SimionPadawan|0|0|1295690400000||
135|exciter[0K]|0|0|1295693010000||
136|SimionPadawan|0|0|1295695631000||
137|SimionPadawan|0|0|1295695637000||
138|exciter[0K]|0|0|1295696086000||
139|exciter[0K]|0|0|1295696157000||
140|SimionPadawan|0|0|1295703885000||
141|SimionPadawan|0|0|1295703895000||
142|exciter[0K]|0|0|1295703981000||
143|SimionPadawan|0|0|1295704243000||
144|SimionPadawan|0|0|1295704259000||
145|SimionPadawan|0|0|1295706129000||
146|SimionPadawan|0|0|1295706156000||
147|SimionPadawan|0|0|1295707403000||
148|KillEmAll|0|0|1295708043000||
149|Licho|0|0|1295721734000||
150|SimionPadawan|0|0|1295768145000||
151|SimionPadawan|0|0|1295768656000||
152|SimionPadawan|0|0|1295771961000||
153|Licho|0|0|1295823750000||
154|Licho|0|0|1295830170000||
155|Vistritium|0|0|1295830134000||
156|luckywaldo7|0|0|1295831952000||
157|Licho|0|0|1295832004000||
158|Licho|0|0|1295832155000||
159|GoogleFrog|0|0|1295832294000||
160|Vistritium|0|0|1295867989000||
161|exciter[0K]|0|0|1295876173000||
162|GoogleFrog|0|0|1295878782000||
163|Vistritium|0|0|1295913991000||
164|Licho|0|0|1295915035000||
165|Vistritium|0|0|1295995440000||
166|Saktoth|0|0|1295995912000||
167|GoogleFrog|0|0|1296024174000||
168|exciter[0K]|0|0|1294581242000||
169|exciter[0K]|0|0|1294581242000||
170|mnementh|0|0|1296285743000||
171|jman2010|0|0|1296338463000||
172|Licho|0|0|1296343258000||
173|Licho|0|0|1296343342000||
174|alusul|0|0|1296394364000||
175|chess123mate|0|0|1296409543000||
176|Licho|0|0|1296431939000||
177|distrugator55|0|0|1296488863000||
178|distrugator55|1|1|1296489277000|DeinFreund;|_Shaman;
179|Licho|0|0|1296521839000||
180|Licho|0|0|1296521870000||
181|exciter[0K]|0|0|1296582755000||
182|c4bot|0|0|1296596489000||
183|nicemonkey|0|0|1296604333000||
184|Licho|0|0|1296605359000||
185|Licho|0|0|1296612310000||
186|exciter[0K]|0|0|1296628127000||
187|Licho|0|0|1296647238000||
188|Skasi|0|0|1296672283000||
189|nicemonkey|0|0|1296690449000||
190|Licho|0|0|1296692258000||
191|Licho|0|0|1296698334000||
192|Skasi|0|0|1296745831000||
193|J0nnJ0nes|0|0|1296757044000||
194|Licho|0|0|1296759844000||
195|jseah|0|0|1296772752000||
196|Licho|0|0|1296782365000||
197|SirPine|0|0|1296784178000||
198|Licho|0|0|1296786258000||
199|Rafal[ZK]|0|0|1296787302000||
200|[LAKL]11041|0|0|1296789384000||
201|exciter[0K]|0|0|1296802252000||
202|Saktoth|0|0|1296810476000||
203|GoogleFrog|0|0|1296827490000||
204|J0nnJ0nes|0|0|1296909225000||
205|[DOOP]Brynnlow|0|0|1296924314000||
206|FengYun|0|0|1296929507000||
207|c4bot|0|0|1296931016000||
208|FengYun|0|0|1296931119000||
209|Licho|0|0|1296953828000||
210|Licho|0|0|1296959054000||
211|FengYun|0|0|1296964476000||
212|Vistritium|0|0|1297006895000||
213|[DOOP]Brynnlow|0|0|1297009481000||
214|Licho|0|0|1297010125000||
215|[DOOP]Brynnlow|0|0|1297010490000||
216|CarRepairer|0|0|1297015022000||
217|exciter[0K]|0|0|1297015546000||
218|xman15|0|0|1297020702000||
219|Licho|0|0|1297022586000||
220|aginor|0|0|1297038196000||
221|GoogleFrog|0|0|1297089811000||
222|GoogleFrog|0|0|1297089885000||
223|GoogleFrog|0|0|1297090000000||
224|GoogleFrog|0|0|1297090284000||
225|Licho|0|0|1297092233000||
226|aginor|0|0|1297092283000||
227|aginor|0|0|1297092434000||
228|Licho|0|0|1297098779000||
229|Saktoth|0|0|1297114856000||
230|xman15|0|0|1297129287000||
231|xman15|0|0|1297130750000||
232|Licho|0|0|1297131704000||
233|Licho|0|0|1297131786000||
234|xman15|0|0|1297186890000||
235|xman15|0|0|1297188313000||
236|[DOOP]Brynnlow|0|0|1297193257000||
237|Licho|0|0|1297199339000||
238|Jasper|0|0|1297207042000||
239|Jasper|0|0|1297207150000||
240|xman15|0|0|1297218107000||
241|[LAKL]11041|0|0|1297220969000||
242|[LAKL]11041|0|0|1297221096000||
243|[LAKL]11041|0|0|1297221276000||
244|SATO_S|0|0|1297225957000||
245|GoogleFrog|0|0|1297239449000||
246|1245|0|0|1297266905000||
247|[DOOP]Brynnlow|0|0|1297276822000||
248|mgwynn|0|0|1297340930000||
249|reluxXx|0|0|1297341191000||
250|Jasper|0|0|1297368439000||
251|xman15|0|0|1297385725000||
252|xman15|0|0|1297386155000||
253|SATO_S|0|0|1297398453000||
254|GoogleFrog|0|0|1297412983000||
255|GoogleFrog|0|0|1297413009000||
256|sannet|0|0|1297459715000||
257|exciter[0K]|0|0|1294581242000||
258|Aksu|0|0|1297487984000||
259|Saktoth|0|0|1297512059000||
260|xman15|0|0|1297553555000||
261|Saktoth|0|0|1297560338000||
262|GoogleFrog|0|0|1297595935000||
263|NomoredrunkenPosting|0|0|1297708010000||
264|[DOOP]Brynnlow|0|0|1297778909000||
265|Hierophant|0|0|1297801895000||
266|[Im]Bored|0|0|1297880738000||
267|luckywaldo7|0|0|1297883702000||
268|luckywaldo7|0|0|1297883836000||
269|Hierophant|0|0|1297886472000||
270|[Im]Bored|0|0|1297894025000||
271|GoogleFrog|0|0|1297912849000||
272|GoogleFrog|0|0|1297926532000||
273|luckywaldo7|0|0|1297969088000||
274|Hierophant|0|0|1297978479000||
275|Licho|0|0|1297980065000||
276|Hierophant|0|0|1297980744000||
277|Hierophant|0|0|1297980792000||
278|Licho|0|0|1297982988000||
279|Licho|0|0|1297983013000||
280|Hierophant|0|0|1297985786000||
281|Karotte|0|0|1298004330000||
282|Licho|0|0|1298039093000||
283|Licho|0|0|1298049627000||
284|xman15|0|0|1298080218000||
285|xman15|0|0|1298080327000||
286|xman15|0|0|1298080351000||
287|[LAKL]11041|0|0|1298088289000||
288|LostAgain|0|0|1298094029000||
289|Licho|0|0|1298100060000||
290|[2up]knorke|0|0|1298103524000||
291|GoogleFrog|0|0|1298117416000||
292|Karotte|0|0|1298126318000||
293|the_spy_tr33|0|0|1298128349000||
294|Zelgius21|0|0|1298128450000||
295|Licho|0|0|1298129206000||
296|Zelgius21|0|0|1298130722000||
297|Karotte|0|0|1298130829000||
298|Zelgius21|0|0|1298133478000||
299|Licho|0|0|1298139661000||
300|Licho|0|0|1298139714000||
301|Licho|0|0|1298139760000||
302|Licho|0|0|1298142124000||
303|Zelgius21|0|0|1298147404000||
304|Licho|0|0|1298147730000||
305|Zelgius21|0|0|1298150147000||
306|Licho|0|0|1298150570000||
307|Zelgius21|0|0|1298150599000||
308|[DOOP]Brynnlow|0|0|1298213971000||
309|maackey|0|0|1298216361000||
310|maackey|0|0|1298216506000||
311|Licho|0|0|1298224632000||
312|[DOOP]Brynnlow|0|0|1298229872000||
313|Licho|0|0|1298230818000||
314|[LAKL]11041|0|0|1298238891000||
315|[LAKL]11041|0|0|1298240207000||
316|xman15|0|0|1298260194000||
317|xman15|0|0|1298261533000||
318|Licho|0|0|1298275129000||
319|Licho|0|0|1298289049000||
320|Jasper|2|0|1298324157000|OldGhostStalker;dahn;|
321|[ACP]havoc_squad|0|0|1298329543000||
322|Karotte|0|0|1298392830000||
323|Licho|0|0|1298394212000||
324|aginor|0|0|1298477265000||
325|Jasper|0|0|1298498877000||
326|luckywaldo7|0|0|1298569383000||
327|luckywaldo7|0|0|1298594919000||
328|GoogleFrog|0|0|1298607175000||
329|Karotte|0|0|1298610204000||
330|Skasi|0|0|1298628525000||
331|Skasi|0|0|1298630826000||
332|Skasi|0|0|1298631421000||
333|luckywaldo7|0|0|1298634456000||
334|Karotte|0|0|1298642885000||
335|test|0|0|1298645507000||
336|[TUPM]Echo419|0|0|1298717904000||
337|[TUPM]Echo419|0|0|1298719257000||
338|GoogleFrog|0|0|1298720496000||
339|[TUPM]Echo419|0|0|1298722716000||
340|xman15|0|0|1298725733000||
341|Skasi|0|0|1298729399000||
342|Karotte|0|0|1298792480000||
343|Karotte|0|0|1298792529000||
344|Licho|0|0|1298824746000||
345|iandamusical|0|0|1298863265000||
346|Licho|0|0|1298880639000||
347|luckywaldo7|0|0|1298903140000||
348|Skasi|0|0|1298905733000||
349|Licho|0|0|1298905930000||
350|Karotte|0|0|1298907663000||
351|aginor|0|0|1298922376000||
352|Licho|0|0|1298923066000||
353|Skasi|0|0|1298937976000||
354|Skasi|0|0|1298938186000||
355|[1uP]archl|0|0|1298958587000||
356|Licho|0|0|1298961680000||
357|[1uP]archl|0|0|1298962113000||
358|Karotte|0|0|1298999665000||
359|[1uP]archl|0|0|1299012373000||
360|Karotte|0|0|1299012938000||
361|GoogleFrog|0|0|1299043451000||
362|Licho|0|0|1299050505000||
363|Karotte|0|0|1299090021000||
364|luckywaldo7|0|0|1299091341000||
365|luckywaldo7|0|0|1299093929000||
366|luckywaldo7|0|0|1299093947000||
367|luckywaldo7|0|0|1299094464000||
368|Karotte|0|0|1299097325000||
369|alusul|0|0|1299133903000||
370|[1uP]archl|0|0|1299150316000||
371|[1uP]archl|0|0|1299150336000||
372|josevparodi|0|0|1299155402000||
373|Skasi|0|0|1299174528000||
374|luckywaldo7|0|0|1299185743000||
375|Saktoth|0|0|1299197199000||
376|Saktoth|0|0|1299197300000||
377|Saktoth|0|0|1299197300000||
378|Saktoth|0|0|1299197526000||
379|Saktoth|0|0|1299197590000||
380|Saktoth|0|0|1299199443000||
381|Saktoth|0|0|1299199711000||
382|Licho|0|0|1299223991000||
383|Licho|0|0|1299243534000||
384|Symeon94|0|0|1299267187000||
385|Symeon94|0|0|1299409859000||
386|Symeon94|0|0|1299410331000||
387|coyotama|0|0|1299424922000||
388|luckywaldo7|0|0|1299442476000||
389|Licho|0|0|1299456697000||
390|luckywaldo7|0|0|1299462638000||
391|Symeon94|0|0|1299504169000||
392|koala666|0|0|1299515043000||
393|miniwar|0|0|1299518587000||
394|Jasper|0|0|1299545130000||
395|luckywaldo7|0|0|1299546467000||
396|luckywaldo7|0|0|1299547465000||
397|Symeon94|0|0|1299579972000||
398|Saktoth|0|0|1299584547000||
399|Saktoth|0|0|1299584628000||
400|Loh[KoCN]|0|0|1299644366000||
401|Symeon94|0|0|1299664444000||
402|Licho|0|0|1299666368000||
403|Symeon94|0|0|1299669391000||
404|luckywaldo7|0|0|1299680556000||
405|Loh[KoCN]|0|0|1299692241000||
406|Skasi|0|0|1299694164000||
407|Jasper|0|0|1299709194000||
408|Licho|0|0|1299713367000||
409|Jasper|0|0|1299721186000||
410|Jasper|0|0|1299722937000||
411|Jasper|0|0|1299723396000||
412|GoogleFrog|0|0|1299731088000||
413|GoogleFrog|0|0|1299731175000||
414|maackey|0|0|1299762014000||
415|luckywaldo7|0|0|1299774195000||
416|[TUPM]Echo419|0|0|1299812509000||
417|Jasper|0|0|1299816373000||
418|Licho|0|0|1299828968000||
419|hiponboy|0|0|1299849651000||
420|Jasper|0|0|1299869568000||
421|Licho|0|0|1299885568000||
422|Licho|0|0|1299885673000||
423|Licho|0|0|1299885697000||
424|Skasi|0|0|1299891464000||
425|Loh[KoCN]|0|0|1299897190000||
426|Skasi|0|0|1299891464000||
427|Jasper|0|0|1300042589000||
428|Jasper|0|0|1300043381000||
429|Antelope|0|0|1300060008000||
430|[NLZ]Andoriel|0|0|1300064805000||
431|[1uP]archl|0|0|1300068457000||
432|GoogleFrog|0|0|1300072123000||
433|GoogleFrog|0|0|1300076186000||
434|GoogleFrog|0|0|1300076970000||
435|GoogleFrog|0|0|1300077186000||
436|Antelope|0|0|1300153829000||
437|Antelope|0|0|1300154257000||
438|[TUPM]Echo419|0|0|1300154710000||
439|[TUPM]Echo419|0|0|1300155154000||
440|[TUPM]Echo419|0|0|1300157451000||
441|Antelope|0|0|1300157473000||
442|[TUPM]Echo419|0|0|1300157488000||
443|Antelope|0|0|1300158445000||
444|Saktoth|0|0|1300169603000||
445|Licho|0|0|1300177854000||
446|[V]noir|0|0|1300180697000||
447|sprang|0|0|1300184039000||
448|RapidDelivery|0|0|1300189014000||
449|Licho|0|0|1300192444000||
450|luckywaldo7|0|0|1300196091000||
451|[TUPM]Echo419|0|0|1300234386000||
452|[TUPM]Echo419|0|0|1300234831000||
453|[1uP]archl|0|0|1300234875000||
454|GoogleFrog|0|0|1300269442000||
458|Loh[KoCN]|0|0|1300292772000||
462|Loh[KoCN]|0|0|1300293161000||
463|Loh[KoCN]|0|0|1300293253000||
464|Loh[KoCN]|0|0|1300293304000||
465|Loh[KoCN]|0|0|1300293863000||
466|exciter[0K]|0|0|1300303465000||
467|Saktoth|0|0|1300311893000||
468|Saktoth|0|0|1300313268000||
469|Saktoth|0|0|1300313290000||
470|Saktoth|0|0|1300313352000||
471|GoogleFrog|0|0|1300321647000||
472|GoogleFrog|0|0|1300327788000||
473|Loh[KoCN]|0|0|1300339764000||
474|korda|0|0|1300369578000||
475|korda|0|0|1300369620000||
476|Licho|0|0|1300372090000||
477|Licho|0|0|1300378581000||
478|javaman90|0|0|1300382418000||
479|javaman90|0|0|1300384767000||
480|ABSprague|0|0|1300391874000||
481|[GBC]HarveyN|0|0|1300393914000||
482|javaman90|0|0|1300396642000||
483|Licho|0|0|1300396819000||
484|Alder|0|0|1300400151000||
485|luckywaldo7|0|0|1300411085000||
486|Saktoth|0|0|1300411724000||
487|Saktoth|0|0|1300411955000||
488|GoogleFrog|0|0|1300414107000||
490|Licho|0|0|1300462306000||
491|exciter[0K]|0|0|1300468829000||
492|korda|0|0|1300482268000||
493|GoogleFrog|0|0|1300494880000||
494|Antelope|0|0|1300541701000||
495|Loh[KoCN]|0|0|1300568181000||
496|[0K]FinDude|0|0|1300569062000||
497|Licho|0|0|1300570128000||
498|luckywaldo7|0|0|1300571815000||
499|Z2008|0|0|1300581077000||
500|luckywaldo7|0|0|1300585437000||
501|luckywaldo7|0|0|1300585507000||
502|Z2008|0|0|1300600612000||
503|Loh[KoCN]|0|0|1300614794000||
504|Loh[KoCN]|0|0|1300615201000||
505|Licho|0|0|1300615591000||
506|[0K]FinDude|0|0|1300618405000||
507|[R2D2]Artoo|0|0|1300624063000||
508|Loh[KoCN]|0|0|1300630089000||
509|RapidDelivery|0|0|1300634808000||
510|Gregzenegair|0|0|1300636204000||
511|Loh[KoCN]|0|0|1300636213000||
512|Loh[KoCN]|0|0|1300636320000||
513|Licho|0|0|1300636787000||
514|Ye|0|0|1300637070000||
515|RapidDelivery|0|0|1300638173000||
516|exciter[0K]|0|0|1300642083000||
517|Skasi|0|0|1299891464000||
518|Jasper|0|0|1300644553000||
519|javaman90|0|0|1300647332000||
520|[GBC]HarveyN|0|0|1300652739000||
521|Licho|0|0|1300653045000||
522|Licho|0|0|1300653289000||
523|exciter[0K]|0|0|1294581242000||
524|Gregzenegair|0|0|1300659639000||
525|Jasper|0|0|1300660636000||
526|fdge|0|0|1300668539000||
527|Loh[KoCN]|0|0|1300688615000||
528|Loh[KoCN]|0|0|1300689419000||
529|KingRaptor|0|0|1300698542000||
530|GoogleFrog|0|0|1300705281000||
531|GoogleFrog|0|0|1300706001000||
532|GoogleFrog|0|0|1300706225000||
533|Loh[KoCN]|0|0|1300707230000||
534|Loh[KoCN]|0|0|1300725226000||
535|zombyfellow|0|0|1300734328000||
536|Mackeroni|0|0|1300738313000||
537|Mackeroni|0|0|1300739081000||
538|Licho|0|0|1300741693000||
539|Antelope|0|0|1300749001000||
540|Ye|0|0|1300772271000||
541|Licho|0|0|1300789693000||
542|GoogleFrog|0|0|1300880897000||
543|Loh[KoCN]|0|0|1300893856000||
544|Loh[KoCN]|0|0|1300902128000||
545|exciter[0K]|0|0|1300906523000||
546|Loh[KoCN]|0|0|1300916495000||
547|Loh[KoCN]|0|0|1300917797000||
548|[LCC]quantum[0K]|0|0|1300920280000||
549|Loh[KoCN]|0|0|1300922824000||
550|GoogleFrog|0|0|1300939680000||
551|GoogleFrog|0|0|1300939704000||
552|GoogleFrog|0|0|1300942014000||
553|GoogleFrog|0|0|1300942196000||
554|Loh[KoCN]|0|0|1300979197000||
555|Loh[KoCN]|0|0|1300987987000||
556|Mackeroni|0|0|1301059165000||
557|Mackeroni|0|0|1301059318000||
558|Mackeroni|0|0|1301060284000||
559|Link3673|0|0|1301062766000||
560|[1uP]archl|0|0|1301085588000||
561|[1uP]archl|0|0|1301085973000||
563|Gregzenegair|0|0|1301092924000||
564|GoogleFrog|0|0|1301099066000||
565|[1uP]archl|0|0|1301106797000||
566|pain3dw|0|0|1301119854000||
567|Gregzenegair|0|0|1301129057000||
568|pain3dw|0|0|1301133002000||
569|GoogleFrog|0|0|1301133914000||
570|fdge|0|0|1301152016000||
571|Gregzenegair|0|0|1301158895000||
572|Licho|0|0|1301160787000||
573|Licho|0|0|1301160800000||
574|Licho|0|0|1301160822000||
575|Loh[KoCN]|0|0|1301169131000||
576|Loh[KoCN]|0|0|1301170489000||
577|Loh[KoCN]|0|0|1301170547000||
578|Licho|0|0|1301170660000||
579|Loh[KoCN]|0|0|1301173300000||
580|Loh[KoCN]|0|0|1301173372000||
581|Loh[KoCN]|0|0|1301173646000||
582|Jasper|0|0|1301175407000||
583|Loh[KoCN]|0|0|1301178568000||
584|Jasper|0|0|1301234050000||
585|Ratchet|0|0|1301251622000||
586|Licho|0|0|1301252598000||
587|Pxtl|0|0|1301268901000||
588|Licho|0|0|1301272137000||
589|Loh[KoCN]|0|0|1301349684000||
590|Jasper|0|0|1301369668000||
591|[1uP]archl|0|0|1301378119000||
592|[1uP]archl|0|0|1301378225000||
593|Licho|0|0|1301387913000||
594|Skasi|0|0|1301388397000||
595|[GBC]HarveyN|0|0|1301396621000||
596|Skasi|0|0|1301403852000||
597|Jasper|0|0|1301434084000||
598|Jasper|0|0|1301434109000||
599|Mackeroni|0|0|1301493059000||
600|Mackeroni|0|0|1301493391000||
601|AmoebaX|0|0|1301527172000||
602|Pxtl|0|0|1301528332000||
603|g_401|0|0|1301605333000||
604|Licho|0|0|1301607645000||
605|GoogleFrog|0|0|1301607759000||
606|Loh[KoCN]|0|0|1301620477000||
607|Loh[KoCN]|0|0|1301620635000||
608|lis1985|0|0|1301647781000||
609|lis1985|0|0|1301647947000||
610|Skasi|0|0|1299891464000||
611|[1uP]archl|0|0|1301650516000||
612|[0K]FinDude|0|0|1301655405000||
613|lis1985|0|0|1301667853000||
618|exciter[0K]|0|0|1294581242000||
619|[1uP]archl|0|0|1301725145000||
620|[1uP]archl|0|0|1301725377000||
621|[GBC]HarveyN|0|0|1301751480000||
622|Eximius|0|0|1301758336000||
623|Antelope|0|0|1301762898000||
624|CarRepairer|0|0|1301763422000||
625|GoogleFrog|0|0|1301798963000||
626|GoogleFrog|1|0|1301799242000|Fealthas;|
627|Eximius|0|0|1301820808000||
628|GoogleFrog|0|0|1301824529000||
629|Eximius|0|0|1301828020000||
630|Eximius|0|0|1301828141000||
631|luckywaldo7|0|0|1301829257000||
632|luckywaldo7|0|0|1301830002000||
633|luckywaldo7|0|0|1301835551000||
634|Jasper|0|0|1301840132000||
635|Jasper|0|0|1301840147000||
637|Jasper|0|0|1301840188000||
640|Eximius|0|0|1301848845000||
641|Antelope|0|0|1301854123000||
642|[1uP]archl|0|0|1301896134000||
643|[1uP]archl|0|0|1301896136000||
644|exciter[0K]|0|0|1301911852000||
645|[GoGo]Dancer|0|0|1301912138000||
646|DartBoris|0|0|1301913566000||
647|GoogleFrog|0|0|1301917651000||
648|JaQ|0|0|1301921775000||
649|[0K]FinDude|0|0|1301924161000||
650|winniebaer|0|0|1301931791000||
651|Licho|0|0|1301935207000||
652|[GoGo]Dancer|0|0|1301950082000||
653|DanteLorel|0|0|1301950599000||
654|luckywaldo7|0|0|1301961204000||
655|luckywaldo7|0|0|1301961245000||
656|Jasper|0|0|1301964216000||
657|Fortaleza|0|0|1301967197000||
658|GoogleFrog|0|0|1301971370000||
659|GoogleFrog|0|0|1301971481000||
660|GoogleFrog|0|0|1301971573000||
661|[SCO]tty|0|0|1301979119000||
662|[SCO]tty|0|0|1301980577000||
663|[1uP]archl|0|0|1301987020000||
664|[1uP]archl|0|0|1301987420000||
666|[1uP]archl|0|0|1301987799000||
678|[1uP]archl|0|0|1301987949000||
679|[1uP]archl|0|0|1301992614000||
680|Firepluk|0|0|1301993621000||
681|Firepluk|1|0|1301993770000|OldGhostStalker;|
683|Jasper|0|0|1302012513000||
684|frameworld|0|0|1302019852000||
685|Jasper|0|0|1302022186000||
686|Licho|0|0|1302022936000||
687|Skasi|0|0|1299891464000||
688|Antelope|0|0|1302040037000||
689|[NLZ]Maletiz|0|0|1302062972000||
690|Licho|0|0|1302070635000||
691|Skasi|0|0|1299891464000||
692|[SCO]tty|0|0|1302086305000||
693|[SCO]tty|0|0|1302086410000||
694|Skasi|0|0|1299891464000||
695|Skasi|0|0|1299891464000||
696|Skasi|0|0|1299891464000||
697|[GoGo]Dancer|0|0|1302116615000||
698|[1uP]archl|0|0|1302124261000||
699|[1uP]archl|0|0|1302124370000||
700|luckywaldo7|0|0|1302135819000||
701|[SCO]tty|0|0|1302137657000||
702|[SCO]tty|0|0|1302138285000||
703|[Crimson]Fatalis|0|0|1302140696000||
704|[Crimson]Fatalis|0|0|1302141344000||
705|[Crimson]Fatalis|0|0|1302141838000||
706|[Crimson]Fatalis|0|0|1302142008000||
707|[Crimson]Fatalis|0|0|1302142880000||
708|Jasper|0|0|1302144049000||
709|[Crimson]Akantor|0|0|1302145328000||
710|[SCO]tty|0|0|1302150294000||
711|[SCO]tty|0|0|1302150466000||
712|[SCO]tty|0|0|1302151008000||
713|GoogleFrog|0|0|1302161095000||
714|Licho|0|0|1302167455000||
715|Licho|0|0|1302167531000||
716|Licho|0|0|1302167566000||
717|Licho|0|0|1302167699000||
718|GoogleFrog|0|0|1302169624000||
719|[SCO]tty|0|0|1302170697000||
720|Licho|0|0|1302177016000||
721|[SCO]tty|0|0|1302180786000||
722|Firepluk|0|0|1302186037000||
723|Licho|0|0|1302189556000||
724|Licho|0|0|1302190260000||
725|[Crimson]Fatalis|0|0|1302199045000||
726|Licho|0|0|1302201836000||
727|[Crimson]Fatalis|0|0|1302202075000||
728|[Crimson]Fatalis|0|0|1302202128000||
729|[Crimson]Fatalis|0|0|1302202550000||
730|frameworld|0|0|1302202956000||
731|AmoebaX|0|0|1302203109000||
732|luckywaldo7|0|0|1302205665000||
733|luckywaldo7|0|0|1302205824000||
734|GoogleFrog|0|0|1302218375000||
735|GoogleFrog|0|0|1302218658000||
736|GoogleFrog|0|0|1302218687000||
737|[SCO]tty|0|0|1302222379000||
738|[SCO]tty|0|0|1302222443000||
739|[SCO]tty|0|0|1302223544000||
740|[SCO]tty|1|0|1302225845000|PieterPost;|
741|[SCO]tty|0|0|1302230082000||
742|Jasper|0|0|1302233615000||
743|GoogleFrog|0|0|1302238652000||
744|Licho|0|0|1302242630000||
745|Licho|0|0|1302242701000||
746|Licho|0|0|1302242841000||
747|DartBoris|0|0|1302249281000||
748|Licho|0|0|1302262422000||
749|Licho|0|0|1302263487000||
750|SimionPadawan|0|0|1302268508000||
751|SimionPadawan|0|0|1302268528000||
752|Licho|0|0|1302275364000||
754|Jasper|0|0|1302276314000||
755|[Crimson]Fatalis|0|0|1302288935000||
756|[Crimson]Fatalis|0|0|1302289804000||
757|[Crimson]Akantor|0|0|1302289830000||
758|[Crimson]Fatalis|0|0|1302290285000||
759|[Crimson]Akantor|0|0|1302290368000||
760|[Crimson]Akantor|0|0|1302290521000||
761|[Crimson]Akantor|0|0|1302290560000||
762|[Crimson]Fatalis|0|0|1302290733000||
763|Licho|0|0|1302290912000||
764|[Crimson]Fatalis|0|0|1302297007000||
765|fdge|0|0|1302300455000||
766|test|0|0|1302303078000||
767|GoogleFrog|0|0|1302303652000||
768|Jasper|0|0|1302310291000||
769|Jasper|0|0|1302310457000||
770|Jasper|0|0|1302316864000||
771|Jasper|0|0|1302316914000||
772|GoogleFrog|0|0|1302319552000||
773|Jasper|0|0|1302319791000||
774|Jasper|0|0|1302320008000||
775|Angellus|0|0|1302326122000||
776|Angellus|0|0|1302326259000||
777|Angellus|0|0|1302326728000||
778|DartBoris|0|0|1302333300000||
779|GoogleFrog|0|0|1302334801000||
780|GoogleFrog|1|0|1302337901000|PieterPost;|
781|GoogleFrog|0|0|1302338013000||
782|DartBoris|0|0|1302338040000||
783|GoogleFrog|0|0|1302346052000||
785|TrueZero|0|0|1302357234000||
786|Jasper|0|0|1302359694000||
787|Antelope|0|0|1302361964000||
788|Antelope|0|0|1302362256000||
789|Jasper|0|0|1302363418000||
790|Fortaleza|0|0|1302366782000||
791|Licho|0|0|1302370576000||
792|[Crimson]Fatalis|0|0|1302380853000||
793|Loh[KoCN]|0|0|1302386211000||
794|Loh[KoCN]|0|0|1302386371000||
795|Loh[KoCN]|0|0|1302386589000||
796|Antelope|0|0|1302389611000||
797|Antelope|0|0|1302389675000||
798|luckywaldo7|0|0|1302394063000||
799|luckywaldo7|0|0|1302394501000||
800|Loh[KoCN]|0|0|1302397610000||
801|Loh[KoCN]|0|0|1302397634000||
802|Loh[KoCN]|0|0|1302397687000||
803|Loh[KoCN]|0|0|1302397716000||
804|Loh[KoCN]|0|0|1302397779000||
805|Loh[KoCN]|0|0|1302397944000||
806|Loh[KoCN]|0|0|1302398187000||
807|Loh[KoCN]|0|0|1302398278000||
808|Loh[KoCN]|0|0|1302398295000||
809|Jasper|0|0|1302400529000||
810|KingRaptor|0|0|1302404502000||
811|CarRepairer|0|0|1302412056000||
812|CarRepairer|0|0|1302413083000||
813|Angellus|0|0|1302421067000||
814|Licho|0|0|1302421590000||
815|Licho|0|0|1302421622000||
816|Saktoth|0|0|1302422174000||
817|Saktoth|0|0|1302422298000||
818|Saktoth|0|0|1302422704000||
819|Licho|0|0|1302426841000||
821|luckywaldo7|0|0|1302437657000||
822|luckywaldo7|0|0|1302445176000||
823|master142|0|0|1302452399000||
824|frameworld|0|0|1302455073000||
825|[Crimson]Fatalis|0|0|1302464417000||
826|Angellus|0|0|1302467491000||
827|Loh[KoCN]|0|0|1302467510000||
828|Loh[KoCN]|0|0|1302467804000||
829|Loh[KoCN]|0|0|1302467873000||
830|Loh[KoCN]|0|0|1302467927000||
831|Loh[KoCN]|0|0|1302468019000||
832|Loh[KoCN]|0|0|1302468154000||
833|TheUnseenForce|0|0|1302475298000||
834|[Crimson]Fatalis|0|0|1302475832000||
835|[Crimson]Akantor|0|0|1302477352000||
836|luckywaldo7|0|0|1302479920000||
837|luckywaldo7|0|0|1302482037000||
838|Jasper|0|0|1302483873000||
839|Jasper|0|0|1302484285000||
840|jseah|0|0|1302485861000||
841|[Crimson]Akantor|0|0|1302486193000||
842|Jasper|0|0|1302488055000||
843|Jasper|0|0|1302488133000||
844|Jasper|0|0|1302488628000||
845|KingRaptor|0|0|1302498555000||
846|Angellus|0|0|1302502749000||
847|Hammish|0|0|1302506086000||
848|Angellus|0|0|1302510989000||
849|Angellus|0|0|1302511147000||
850|Angellus|0|0|1302511367000||
851|DartBoris|0|0|1302512584000||
852|[GoGo]Dancer|0|0|1302513911000||
853|[I]Tluszczeboy|0|0|1302523485000||
854|Licho|0|0|1302526893000||
855|Licho|0|0|1302527106000||
856|GoogleFrog|0|0|1302529125000||
857|GoogleFrog|0|0|1302529242000||
858|GoogleFrog|0|0|1302529379000||
859|GoogleFrog|0|0|1302529545000||
860|GoogleFrog|0|0|1302529603000||
861|GoogleFrog|0|0|1302529678000||
862|GoogleFrog|0|0|1302529858000||
863|GoogleFrog|0|0|1302529979000||
864|GoogleFrog|2|0|1302530007000|Sprung;[ACP]ScarySquirrel;|
865|GoogleFrog|0|0|1302530149000||
866|GoogleFrog|0|0|1302530248000||
867|KingRaptor|0|0|1302531268000||
868|GoogleFrog|0|0|1302531393000||
869|KingRaptor|0|0|1302531411000||
870|KingRaptor|0|0|1302532042000||
871|DartBoris|0|0|1302532212000||
872|Jasper|0|0|1302535068000||
873|[I]Tluszczeboy|0|0|1302536942000||
874|Jasper|0|0|1302537396000||
875|Licho|0|0|1302539872000||
876|jseah|0|0|1302542565000||
877|CarRepairer|0|0|1302545528000||
878|Skasi|0|0|1299891464000||
879|Rill|0|0|1302550336000||
880|luckywaldo7|0|0|1302552197000||
881|[GoGo]Dancer|0|0|1302555111000||
882|Skasi|0|0|1299891464000||
883|Licho|0|0|1302559176000||
884|Jasper|0|0|1302559404000||
885|Jasper|0|0|1302559462000||
886|Jasper|0|0|1302559922000||
887|[Crimson]Fatalis|0|0|1302560932000||
888|Jasper|0|0|1302562661000||
889|KingRaptor|0|0|1302564395000||
890|[Crimson]Akantor|0|0|1302565022000||
891|[Crimson]Akantor|0|0|1302565204000||
892|[GoGo]Dancer|0|0|1302568653000||
893|KingRaptor|0|0|1302571149000||
894|[I]Tluszczeboy|0|0|1302575480000||
895|[I]Tluszczeboy|0|0|1302575925000||
896|[I]Tluszczeboy|0|0|1302576132000||
897|likesmeso|0|0|1302577098000||
898|GoogleFrog|0|0|1302578149000||
899|GoogleFrog|0|0|1302579501000||
900|GoogleFrog|0|0|1302582504000||
901|Licho|0|0|1302582706000||
902|DartBoris|0|0|1302601002000||
903|DartBoris|0|0|1302601658000||
904|Angellus|0|0|1302609731000||
905|Licho|0|0|1302610537000||
906|[I]Tluszczeboy|0|0|1302613739000||
907|[GoGo]Dancer|0|0|1302620505000||
908|Jasper|0|0|1302621078000||
909|Licho|0|0|1302628253000||
910|Licho|0|0|1302628359000||
911|Licho|0|0|1302648092000||
912|[GoGo]Dancer|0|0|1302648484000||
913|Licho|0|0|1302648613000||
914|jseah|0|0|1302657526000||
915|Jasper|0|0|1302661160000||
916|jseah|0|0|1302663443000||
917|Jasper|0|0|1302665822000||
918|GoogleFrog|0|0|1302703880000||
919|Licho|0|0|1302704973000||
920|Licho|0|0|1302705038000||
921|Rill|0|0|1302712640000||
922|Licho|0|0|1302724578000||
923|[Crimson]Fatalis|0|0|1302739261000||
924|[GoGo]Dancer|0|0|1302744613000||
925|IronFire|0|0|1302745613000||
926|[Crimson]Fatalis|0|0|1302746515000||
927|[Crimson]Fatalis|0|0|1302746545000||
928|Jasper|0|0|1302747981000||
929|Jasper|0|0|1302748031000||
930|maackey|0|0|1302749444000||
931|GoogleFrog|0|0|1302754015000||
932|[GoGo]Dancer|0|0|1302755489000||
933|Loh[KoCN]|0|0|1302756528000||
934|Loh[KoCN]|0|0|1302756608000||
935|Loh[KoCN]|0|0|1302756669000||
936|Loh[KoCN]|0|0|1302756830000||
937|Loh[KoCN]|0|0|1302757188000||
938|Loh[KoCN]|0|0|1302757313000||
939|GoogleFrog|0|0|1302762084000||
940|[1uP]archl|0|0|1302766031000||
941|[2up]knorke|0|0|1302766754000||
942|Licho|0|0|1302767525000||
943|Licho|0|0|1302767568000||
944|DartBoris|0|0|1302778469000||
945|GoogleFrog|0|0|1302778741000||
946|GoogleFrog|0|0|1302779169000||
947|Licho|0|0|1302780527000||
948|GoogleFrog|0|0|1302790518000||
949|Licho|0|0|1302793741000||
950|[I]Tluszczeboy|0|0|1302798266000||
951|[GoGo]Dancer|0|0|1302807882000||
953|luckywaldo7|0|0|1302811240000||
954|luckywaldo7|0|0|1302811353000||
955|GoogleFrog|0|0|1302822747000||
956|TrueZero|0|0|1302824335000||
957|[1uP]archl|0|0|1302826282000||
958|[1uP]archl|0|0|1302826628000||
959|[1uP]archl|0|0|1302829967000||
960|[1uP]archl|0|0|1302830176000||
961|[1uP]archl|0|0|1302830298000||
962|Licho|0|0|1302847395000||
963|Licho|0|0|1302849671000||
964|[1uP]archl|0|0|1302854469000||
965|frameworld|0|0|1302876502000||
966|Licho|0|0|1302877791000||
967|[GBC]HarveyN|0|0|1302879478000||
968|Jasper|0|0|1302883038000||
969|[GBC]HarveyN|0|0|1302883197000||
970|[ACE]lulhoofd1|0|0|1302884142000||
971|[Crimson]Akantor|0|0|1302895563000||
972|[Crimson]Fatalis|0|0|1302895810000||
973|Licho|0|0|1302896336000||
974|[2up]knorke|0|0|1302902232000||
975|[Crimson]Fatalis|0|0|1302910224000||
976|[Crimson]Akantor|0|0|1302910502000||
977|KingRaptor|0|0|1302911770000||
978|GoogleFrog|0|0|1302912150000||
979|maackey|0|0|1302917110000||
980|Jasper|0|0|1302918236000||
981|[Crimson]Akantor|0|0|1302929297000||
982|[1uP]archl|0|0|1302935913000||
983|[1uP]archl|0|0|1302936022000||
984|[1uP]archl|0|0|1302936392000||
985|GoogleFrog|0|0|1302936438000||
986|Licho|0|0|1302938041000||
987|Licho|0|0|1302938083000||
988|[GBC]HarveyN|0|0|1302944267000||
989|GoogleFrog|0|0|1302954554000||
990|[1uP]archl|0|0|1302955292000||
991|Jasper|0|0|1302961631000||
992|DartBoris|0|0|1302963180000||
993|fdge|0|0|1302964638000||
994|DartBoris|0|0|1302965155000||
995|[I]Tluszczeboy|0|0|1302967996000||
996|Angellus|0|0|1302968316000||
997|luckywaldo7|0|0|1302969993000||
998|Jasper|0|0|1302970537000||
999|[ACE]lulhoofd1|0|0|1302973231000||
1000|Licho|0|0|1302974527000||
1001|Licho|0|0|1302974642000||
1002|[GoGo]Dancer|0|0|1302976805000||
1003|[Crimson]Fatalis|0|0|1302977215000||
1004|[ACE]lulhoofd1|0|0|1302977380000||
1005|[Crimson]Akantor|0|0|1302977639000||
1006|Licho|0|0|1302979010000||
1007|Licho|0|0|1302979092000||
1008|Licho|0|0|1302979524000||
1009|[GBC]HarveyN|0|0|1302980598000||
1010|[GBC]HarveyN|0|0|1302982627000||
1011|Jasper|0|0|1302984198000||
1012|Jasper|0|0|1302984322000||
1013|[Crimson]Fatalis|0|0|1302985082000||
1014|Jasper|0|0|1302986835000||
1015|luckywaldo7|0|0|1302988067000||
1016|luckywaldo7|0|0|1302988144000||
1017|Licho|0|0|1302989272000||
1018|Licho|0|0|1302989303000||
1022|luckywaldo7|0|0|1302990870000||
1023|Jasper|0|0|1302991437000||
1024|Jasper|0|0|1302991641000||
1025|Jasper|0|0|1302991879000||
1026|Jasper|0|0|1302992048000||
1027|luckywaldo7|0|0|1302992544000||
1028|TrueZero|0|0|1302992601000||
1029|[Crimson]Fatalis|0|0|1302993700000||
1030|Jasper|0|0|1302994121000||
1031|[Crimson]Fatalis|0|0|1302994258000||
1032|[Crimson]Fatalis|0|0|1302994683000||
1033|GoogleFrog|0|0|1302994827000||
1034|luckywaldo7|0|0|1302994914000||
1035|GoogleFrog|0|0|1302994991000||