-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathanalytics.csv
More file actions
We can make this file beautiful and searchable if this error is corrected: It looks like row 6 should actually have 1 column, instead of 8 in line 5.
3449 lines (3446 loc) · 288 KB
/
Copy pathanalytics.csv
File metadata and controls
3449 lines (3446 loc) · 288 KB
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
# ----------------------------------------
# Toate datele site-ului
# Pages
# 20140815-20140911
# ----------------------------------------
Page,Pageviews,Unique Pageviews,Avg. Time on Page,Entrances,Bounce Rate,% Exit,Page Value
/doku.php?id=wiki:user:raptorak,"26,778","26,056",00:00:30,394,69.04%,81.79%,$0.00
/doku.php,"1,251",660,00:01:26,421,54.39%,22.94%,$0.00
/doku.php?id=scrypt_altcoin_cloning_guide,"1,174",930,00:06:31,906,78.81%,75.81%,$0.00
/doku.php?id=rift_loyalty_system,"1,024",997,00:00:11,421,82.66%,37.01%,$0.00
/doku.php?id=running_a_bitcoin_faucet,862,823,00:00:13,266,63.16%,24.13%,$0.00
/doku.php?id=rift_gearing_up_for_pvp,727,700,00:00:04,115,42.61%,10.45%,$0.00
/doku.php?id=devcoin_pricing_for_november_2013,713,696,00:00:02,104,7.69%,3.51%,$0.00
/doku.php?id=mcxnow_fee_shares,707,689,<00:00:00,102,5.88%,2.69%,$0.00
/doku.php?id=the_value_of_gridseed_scrypt_asics,706,684,00:00:01,79,7.59%,2.55%,$0.00
/doku.php?id=bringing_writers_to_devtome_the_right_way,702,686,<00:00:00,79,5.06%,2.56%,$0.00
/doku.php?id=bitads_review,701,690,<00:00:00,85,5.88%,2.71%,$0.00
/doku.php?id=doing_surveys_for_free_stuff,700,680,00:00:02,88,11.36%,4.43%,$0.00
/doku.php?id=rift_cross_shard_features,699,682,00:00:01,123,40.65%,9.59%,$0.00
/doku.php?id=rift_what_to_do_at_50,699,689,<00:00:00,83,6.02%,1.72%,$0.00
/doku.php?id=guild_wars_2_-_why_stonemist_castle_is_not_worth_it,697,681,00:00:01,93,6.45%,2.44%,$0.00
/doku.php?id=dogecoin_is_now_catering_to_inflation,693,674,00:00:01,79,7.59%,3.03%,$0.00
/doku.php?id=middlecoin_pool,692,675,00:00:01,93,2.15%,1.30%,$0.00
/doku.php?id=cbtc_month_1_dividends,691,672,00:00:01,69,4.35%,2.17%,$0.00
/doku.php?id=guild_wars_2_understanding_battle_of_kyhlo_structured_pvp_map,691,678,00:00:02,95,6.32%,3.04%,$0.00
/doku.php?id=mining_pools_vs_solo_mining,691,673,<00:00:00,109,25.69%,7.24%,$0.00
/doku.php?id=rift_planes_of_telara_-_a_look_at_rifts,689,676,<00:00:00,88,10.23%,3.63%,$0.00
/doku.php?id=the_importance_of_last_online_feature_in_games,689,676,<00:00:00,95,4.21%,2.47%,$0.00
/doku.php?id=a_flaw_with_crypto_currencies_a_look_at_blockchains,688,679,<00:00:00,94,7.45%,3.92%,$0.00
/doku.php?id=dogecoin_1-6_update_and_what_it_means_to_you,688,672,<00:00:00,93,7.53%,3.34%,$0.00
/doku.php?id=pumpndump_alt_coin_growthcoin,687,677,<00:00:00,77,10.39%,3.20%,$0.00
/doku.php?id=guild_wars_2_-_is_joining_a_guild_worth_it,686,667,00:00:02,81,2.47%,2.19%,$0.00
/doku.php?id=rift_fishing_bots_somewhat_under_control,686,675,<00:00:00,79,3.80%,2.77%,$0.00
/doku.php?id=guild_wars_2_captains_airship_is_it_worth_it,685,671,00:00:03,79,12.66%,2.92%,$0.00
/doku.php?id=rift_tips_and_tricks_2,685,670,00:00:01,78,3.85%,2.34%,$0.00
/doku.php?id=bitcoin_trading_bots_my_take,684,677,<00:00:00,78,7.69%,2.49%,$0.00
/doku.php?id=minimum_wage_laws_my_take,683,668,00:00:01,97,7.22%,3.22%,$0.00
/doku.php?id=gw2_wvw_skill_guide,682,664,00:00:02,80,7.50%,2.64%,$0.00
/doku.php?id=my_opinion_electric_cars,682,667,00:00:01,91,9.89%,4.11%,$0.00
/doku.php?id=rift_pre_sl_gear_is_worthless,682,669,00:00:01,92,5.43%,3.23%,$0.00
/doku.php?id=rift_onslaught_guide,681,666,<00:00:00,99,7.07%,2.20%,$0.00
/doku.php?id=windows_7_vs_windows_8_view,681,670,<00:00:00,85,5.88%,2.50%,$0.00
/doku.php?id=mail_in_rebates_-_what_you_need_to_know,680,671,00:00:02,80,12.50%,5.15%,$0.00
/doku.php?id=paintball_for_newbies,678,658,00:00:03,82,2.44%,4.72%,$0.00
/doku.php?id=traveling_-_flying_vs_driving,678,668,<00:00:00,95,6.32%,3.69%,$0.00
/doku.php?id=warning_-_do_not_open_new_accounts_before_buying_a_house,678,661,<00:00:00,87,9.20%,2.21%,$0.00
/doku.php?id=the_possible_fall_of_bitads,675,668,<00:00:00,94,12.77%,3.85%,$0.00
/doku.php?id=why_alt_coin_attacks_hurt_everyone,675,661,<00:00:00,78,5.13%,5.63%,$0.00
/doku.php?id=guild_wars_2_daily_quests_overview,674,662,<00:00:00,97,7.22%,3.56%,$0.00
/doku.php?id=cbtc_december_report,673,659,00:00:01,97,5.15%,2.23%,$0.00
/doku.php?id=guild_wars_2_and_the_lack_of_roles,673,656,<00:00:00,81,2.47%,1.93%,$0.00
/doku.php?id=why_i_write_raptoraks_entry,673,652,<00:00:00,95,9.47%,3.71%,$0.00
/doku.php?id=asics_-_preparing_for_the_future,672,654,<00:00:00,71,2.82%,4.02%,$0.00
/doku.php?id=moving_to_mars_my_thoughts,672,649,<00:00:00,69,7.25%,3.57%,$0.00
/doku.php?id=investing_in_just_-_dice,671,655,00:00:01,99,9.09%,4.17%,$0.00
/doku.php?id=rift_ember_isle_instant_adventures,671,650,00:00:01,80,10.00%,2.83%,$0.00
/doku.php?id=rift_gambling,671,652,<00:00:00,89,4.49%,1.79%,$0.00
/doku.php?id=mcxnow_interest_sharing,670,656,00:00:01,89,12.36%,4.18%,$0.00
/doku.php?id=peerbet_review,670,652,<00:00:00,91,8.79%,4.48%,$0.00
/doku.php?id=rift_guild_quests_review,670,658,<00:00:00,114,33.33%,7.01%,$0.00
/doku.php?id=solo_vs_pool_mining,670,665,00:00:07,127,35.43%,10.15%,$0.00
/doku.php?id=bitcoin_faucets,669,659,00:00:01,98,3.06%,2.24%,$0.00
/doku.php?id=casinobitcoin_acquires_peerbet,669,655,<00:00:00,94,13.83%,4.04%,$0.00
/doku.php?id=the_importance_of_voice_chat_in_games,669,662,<00:00:00,97,8.25%,4.04%,$0.00
/doku.php?id=elder_scrolls_online_dismounting_annoyances,668,653,<00:00:00,102,2.94%,2.10%,$0.00
/doku.php?id=my_thoughts_about_teras_levelup_event,668,661,00:00:01,88,4.55%,1.50%,$0.00
/doku.php?id=a_look_at_naked_and_afraid,667,651,00:00:01,63,6.35%,9.75%,$0.00
/doku.php?id=the_need_for_decentralized_stocks,667,654,00:00:01,96,5.21%,2.55%,$0.00
/doku.php?id=walking_for_health_-_an_overview,667,652,<00:00:00,88,7.95%,3.15%,$0.00
/doku.php?id=rift_-_a_look_at_conquest_decay,666,649,<00:00:00,97,13.40%,5.26%,$0.00
/doku.php?id=rift_instant_adventures_review,666,651,<00:00:00,71,7.04%,2.55%,$0.00
/doku.php?id=should_multi_boxing_games_be_allowed,666,652,<00:00:00,83,4.82%,4.95%,$0.00
/doku.php?id=the_importance_of_backing_up_crypto_wallets,666,655,<00:00:00,71,7.04%,4.20%,$0.00
/doku.php?id=valuing_a_crypto_company,666,656,00:00:01,80,8.75%,3.45%,$0.00
/doku.php?id=cloud_mining_my_thoughts,665,660,00:00:01,87,6.90%,3.46%,$0.00
/doku.php?id=critical_thinking_questions_and_evaluations_-_part_01,665,656,00:00:02,81,9.88%,3.16%,$0.00
/doku.php?id=rift_library_of_the_runemasters,665,651,<00:00:00,81,4.94%,2.26%,$0.00
/doku.php?id=rift_ros_chronicle_preview,665,646,<00:00:00,80,6.25%,3.16%,$0.00
/doku.php?id=rift_guild_recruitment_system_preview,664,653,<00:00:00,96,3.12%,2.11%,$0.00
/doku.php?id=how_to_teach_children_financial_responsibility,663,644,00:00:02,81,4.94%,2.87%,$0.00
/doku.php?id=low_level_pvp_in_rift,663,650,00:00:01,82,20.73%,4.07%,$0.00
/doku.php?id=an_overview_of_mcxbux,662,642,00:00:01,93,5.38%,2.42%,$0.00
/doku.php?id=cryptsy_and_the_lag_of_doom,662,655,<00:00:00,88,6.82%,3.47%,$0.00
/doku.php?id=housing_-_are_home_owner_association_fees_worth_it,662,646,<00:00:00,76,6.58%,3.32%,$0.00
/doku.php?id=lost_crypto_coins_and_deflation,662,652,<00:00:00,81,7.41%,4.08%,$0.00
/doku.php?id=rift_3.0_water_reveal_and_thoughts,662,647,<00:00:00,77,3.90%,1.81%,$0.00
/doku.php?id=should_you_get_a_laptop_or_desktop,662,648,00:00:04,88,9.09%,4.38%,$0.00
/doku.php?id=why_i_hate_cost_per_click_ads,662,649,00:00:01,94,6.38%,2.42%,$0.00
/doku.php?id=are_led_or_cfl_bulbs_worth_the_cost,661,649,00:00:01,66,6.06%,3.18%,$0.00
/doku.php?id=finding_movies_on_netflix,661,644,<00:00:00,64,12.50%,3.03%,$0.00
/doku.php?id=guild_wars_2_-_pve_leveling_through_structured_pvp,661,647,<00:00:00,86,9.30%,4.54%,$0.00
/doku.php?id=i_miss_last_comic_standing_-_bring_it_back,661,640,<00:00:00,79,8.86%,3.33%,$0.00
/doku.php?id=poker_bankroll_management,661,638,00:00:02,77,5.19%,3.18%,$0.00
/doku.php?id=mmo_guilds_and_minimum_member_requirements,660,643,00:00:04,92,9.78%,3.18%,$0.00
/doku.php?id=rift_26_preview,660,649,<00:00:00,90,5.56%,2.42%,$0.00
/doku.php?id=economys_effect_on_gambling,659,646,00:00:02,71,8.45%,3.95%,$0.00
/doku.php?id=game_fan_sites_and_their_relationship_to_the_games_they_represent,659,637,00:00:01,73,8.22%,4.86%,$0.00
/doku.php?id=guild_wars_2_structured_pvp_knocking_out_the_dailies,659,647,<00:00:00,81,8.64%,3.19%,$0.00
/doku.php?id=is_poker_a_game_of_skill_or_luck,659,638,00:00:01,74,8.11%,3.19%,$0.00
/doku.php?id=rift_161_hotfix_5_response,659,648,<00:00:00,77,11.69%,3.49%,$0.00
/doku.php?id=how_to_get_moving_boxes_as_cheap_as_possible,658,648,00:00:01,86,10.47%,3.04%,$0.00
/doku.php?id=scams_and_crypto_currencies,658,649,00:00:01,83,8.43%,3.19%,$0.00
/doku.php?id=tera_event_-_create_a_loading_screen,658,643,00:00:02,103,4.85%,3.95%,$0.00
/doku.php?id=prompt_-_garfield_in_real_life,657,639,00:00:01,83,6.02%,2.89%,$0.00
/doku.php?id=rift_-_boosting_reputation_after_finishing_all_quests,657,645,<00:00:00,76,10.53%,3.96%,$0.00
/doku.php?id=rift_afk_players_in_ia,657,641,<00:00:00,70,8.57%,1.98%,$0.00
/doku.php?id=solar_power_-_is_it_worth_it,657,642,<00:00:00,99,6.06%,2.28%,$0.00
/doku.php?id=the_resurrection_of_growthcoin,657,644,00:00:01,88,11.36%,3.50%,$0.00
/doku.php?id=comparing_cost_of_hybrids_to_gas_only_cars,656,643,<00:00:00,84,7.14%,3.35%,$0.00
/doku.php?id=rift_is_not_dead,656,641,00:00:01,70,5.71%,3.66%,$0.00
/doku.php?id=rift_storm_legions_difficulty,656,643,<00:00:00,76,7.89%,3.96%,$0.00
/doku.php?id=why_rift_should_remove_faction_based_warfronts,656,643,<00:00:00,83,8.43%,2.90%,$0.00
/doku.php?id=wireless_computer_accessories_and_gaming,656,643,00:00:02,71,4.23%,2.74%,$0.00
/doku.php?id=butterfly_labs_mining_equipment_available_on_tiger_direct,655,644,<00:00:00,96,6.25%,2.60%,$0.00
/doku.php?id=poker_freeroll_mentality,655,636,00:00:02,82,10.98%,3.36%,$0.00
/doku.php?id=rift_fae_yule_whitefall_review,655,640,<00:00:00,73,8.22%,2.75%,$0.00
/doku.php?id=rift_instant_adventures_revisited,655,641,<00:00:00,88,6.82%,1.98%,$0.00
/doku.php?id=unocs_-_an_overview,655,644,<00:00:00,70,11.43%,4.73%,$0.00
/doku.php?id=black_friday_for_newbies,654,633,00:00:01,64,4.69%,3.36%,$0.00
/doku.php?id=rift_warfront_turtling_opinion,654,642,00:00:01,102,8.82%,3.06%,$0.00
/doku.php?id=should_gold_farming_in_games_be_allowed,654,640,00:00:02,75,6.67%,5.20%,$0.00
/doku.php?id=why_coinchat_rocks,654,642,<00:00:00,77,3.90%,1.53%,$0.00
/doku.php?id=critical_thinking_questions_and_evaluations_-_part_04,653,647,<00:00:00,85,2.35%,2.30%,$0.00
/doku.php?id=dvrs_and_commercials_a_look_at_the_present,653,636,00:00:01,85,4.71%,3.52%,$0.00
/doku.php?id=kickstarter_funding_makes_no_sense,653,633,<00:00:00,87,4.60%,1.53%,$0.00
/doku.php?id=why_pandora_rocks,653,638,00:00:02,72,8.33%,2.14%,$0.00
/doku.php?id=coinfaucets_the_ultimate_bitcoin_faucet_rotator,652,639,<00:00:00,94,25.53%,5.98%,$0.00
/doku.php?id=do_class_guides_hurt_mmos,652,641,00:00:01,84,10.71%,3.83%,$0.00
/doku.php?id=flat_rate_vs_cpm_advertising,652,633,00:00:01,92,6.52%,2.30%,$0.00
/doku.php?id=combating_devcoin_inflation,651,633,<00:00:00,77,9.09%,3.38%,$0.00
/doku.php?id=guild_wars_2_and_the_world_wide_market_approach,651,636,<00:00:00,81,6.17%,3.99%,$0.00
/doku.php?id=is_an_automatic_alt_coin_generator_bad_for_cryptos,651,634,<00:00:00,84,17.86%,5.53%,$0.00
/doku.php?id=scharmbeck_and_its_effect_on_the_value_of_worldcoin,651,635,00:00:01,90,10.00%,2.76%,$0.00
/doku.php?id=subscription_based_games_and_time_commitments,651,641,00:00:02,84,4.76%,2.61%,$0.00
/doku.php?id=a_look_at_feathercoin,650,639,00:00:03,92,8.70%,2.92%,$0.00
/doku.php?id=bitads_-_an_advertisers_and_publishers_review,650,635,00:00:02,82,2.44%,3.23%,$0.00
/doku.php?id=crypto_currency_exchanges_and_offering_interest_my_take,650,637,00:00:01,68,5.88%,3.85%,$0.00
/doku.php?id=games_why_account_wide_friend_lists_suck,650,634,<00:00:00,91,2.20%,2.31%,$0.00
/doku.php?id=guild_wars_2_making_friends_through_structured_pvp,650,637,00:00:03,96,9.38%,3.23%,$0.00
/doku.php?id=rift_social_experiment,650,641,<00:00:00,64,7.81%,3.23%,$0.00
/doku.php?id=why_rift_planar_attunement_is_capped,650,637,<00:00:00,87,12.64%,2.92%,$0.00
/doku.php?id=why_the_guild_wars_2_trading_post_rocks,650,636,00:00:01,69,1.45%,2.77%,$0.00
/doku.php?id=black_friday_sales_on_thursday,649,639,<00:00:00,87,3.45%,2.47%,$0.00
/doku.php?id=conserving_laptop_battery_life_-_a_guide_to_laptop_batteries,649,639,00:00:01,70,11.43%,4.31%,$0.00
/doku.php?id=december_6_2013_bitcoin_price_tanks,649,630,<00:00:00,80,7.50%,2.62%,$0.00
/doku.php?id=password_phishing_defense,649,630,00:00:01,66,7.58%,3.08%,$0.00
/doku.php?id=rift_should_conquest_rewards_be_removed,649,629,00:00:01,89,6.74%,3.08%,$0.00
/doku.php?id=tera_flaws_fixes_and_the_future,649,637,<00:00:00,75,5.33%,3.08%,$0.00
/doku.php?id=why_are_gamers_antisocial,649,637,<00:00:00,73,5.48%,7.55%,$0.00
/doku.php?id=microsoft_office_vs_libreoffice_vs_openoffice,648,633,00:00:01,86,10.47%,3.55%,$0.00
/doku.php?id=rift_goes_f2p,648,638,00:00:01,79,5.06%,2.62%,$0.00
/doku.php?id=rift_planebreaker_bastion_exploited,648,632,00:00:01,68,4.41%,3.24%,$0.00
/doku.php?id=social_marketing_via_facebook,648,634,<00:00:00,64,1.56%,3.24%,$0.00
/doku.php?id=freedom_kills,647,639,00:00:02,84,3.57%,7.73%,$0.00
/doku.php?id=gw2_spvp_esports,647,639,<00:00:00,81,8.64%,3.40%,$0.00
/doku.php?id=hashcows_hacked_december_2013,647,631,00:00:01,103,4.85%,2.47%,$0.00
/doku.php?id=is_rift_p2w,647,636,00:00:01,73,8.22%,4.33%,$0.00
/doku.php?id=jack_in_the_box_review,647,636,00:00:02,81,7.41%,2.47%,$0.00
/doku.php?id=mcxfees_and_their_tie_to_usd,647,635,00:00:02,76,6.58%,2.16%,$0.00
/doku.php?id=rift_leveling_speed,647,636,<00:00:00,92,10.87%,2.32%,$0.00
/doku.php?id=are_games_that_recycle_events_lazy,646,641,00:00:01,104,7.69%,3.56%,$0.00
/doku.php?id=microtown_-_my_initial_thoughts,646,632,<00:00:00,69,7.25%,3.41%,$0.00
/doku.php?id=ponzifying_devtome_my_response,646,631,<00:00:00,69,4.35%,2.94%,$0.00
/doku.php?id=rift_exodus_of_storm_queen,646,632,00:00:01,74,2.70%,2.01%,$0.00
/doku.php?id=rift_mentoring_system,646,635,00:00:01,88,11.36%,2.79%,$0.00
/doku.php?id=tera_-_double_drop_days_in_response_to_outages_02-2013,646,634,<00:00:00,101,11.88%,4.18%,$0.00
/doku.php?id=world_poker_tour_amateur_poker_league_review,646,632,00:00:01,68,8.82%,3.25%,$0.00
/doku.php?id=a_look_at_blackcoin,645,625,<00:00:00,87,8.05%,3.57%,$0.00
/doku.php?id=guild_wars_2_obsidian_sanctum_change,645,636,<00:00:00,73,4.11%,2.48%,$0.00
/doku.php?id=coinurl_and_malware,644,629,00:00:01,84,13.10%,4.66%,$0.00
/doku.php?id=gw2_why_i_like_wvw,644,625,<00:00:00,61,3.28%,5.59%,$0.00
/doku.php?id=litecoin_-_my_thoughts,644,630,00:00:02,87,4.60%,3.11%,$0.00
/doku.php?id=mmo_gear_breaking_opinion,644,627,<00:00:00,80,8.75%,2.80%,$0.00
/doku.php?id=star_trek_online_-_dilithium_guide,644,632,00:00:01,97,9.28%,3.26%,$0.00
/doku.php?id=why_linux_and_gamers_do_not_mix,644,631,<00:00:00,102,5.88%,3.57%,$0.00
/doku.php?id=are_crypto_faucets_worth_using,643,628,00:00:01,70,5.71%,5.29%,$0.00
/doku.php?id=is_bitcoin_a_currency_-_a_look_at_what_this_means,643,636,<00:00:00,79,7.59%,4.35%,$0.00
/doku.php?id=rift_parser_proper_usage,643,636,00:00:02,94,7.45%,2.02%,$0.00
/doku.php?id=the_crash_of_inputs_and_coinlenders,643,637,00:00:01,105,10.48%,3.27%,$0.00
/doku.php?id=black_friday_sales_and_shopping_for_newbies,642,628,00:00:01,73,4.11%,2.80%,$0.00
/doku.php?id=guild_wars_2_forest_of_niflhel_opinion,642,629,<00:00:00,86,9.30%,2.49%,$0.00
/doku.php?id=guild_wars_2_structured_pvp_tournaments_and_matches,642,633,00:00:01,89,7.87%,3.89%,$0.00
/doku.php?id=backing_up_mmorpgs_for_moving_or_reformatting,641,625,<00:00:00,87,5.75%,2.18%,$0.00
/doku.php?id=bitcoin_difficulty_rising_fast,641,621,<00:00:00,82,3.66%,3.90%,$0.00
/doku.php?id=prompt_-_your_new_home,641,631,00:00:01,74,2.70%,2.03%,$0.00
/doku.php?id=rift_finding_balance_casual_hardcore,641,626,<00:00:00,88,5.68%,2.65%,$0.00
/doku.php?id=rift_lack_of_tanks,641,629,00:00:01,78,5.13%,2.96%,$0.00
/doku.php?id=the_importance_of_version_control_for_developers,641,623,00:00:03,73,6.85%,2.65%,$0.00
/doku.php?id=the_value_of_using_bitcoins_for_transactions,641,626,<00:00:00,94,4.26%,2.50%,$0.00
/doku.php?id=a_guide_to_nexus,640,629,<00:00:00,80,13.75%,3.28%,$0.00
/doku.php?id=alt_coin_investment_tip_-_follow_bitcoin,640,629,00:00:02,95,4.21%,3.44%,$0.00
/doku.php?id=crypto_currencies_and_market_corrections,640,627,00:00:02,80,2.50%,2.03%,$0.00
/doku.php?id=does_gw2_remove_the_holy_trinity,640,634,00:00:02,72,11.11%,4.06%,$0.00
/doku.php?id=guild_wars_2_sieges_-_when_to_defend_and_run,640,628,<00:00:00,70,8.57%,3.75%,$0.00
/doku.php?id=gw2_weekly_reset_opinion,640,627,<00:00:00,92,5.43%,2.81%,$0.00
/doku.php?id=rift_artifacts_opinions,640,628,00:00:02,96,21.88%,7.34%,$0.00
/doku.php?id=betarigs_review,639,630,<00:00:00,80,6.25%,2.19%,$0.00
/doku.php?id=guild_wars_2_world_vs_world_commanders_opinion,639,621,00:00:01,86,6.98%,4.23%,$0.00
/doku.php?id=rift_raid_finder_opinion,639,627,<00:00:00,83,3.61%,2.35%,$0.00
/doku.php?id=rift_t3_pa,639,623,00:00:04,74,6.76%,2.97%,$0.00
/doku.php?id=coins_and_exchanges,638,626,<00:00:00,87,6.90%,4.23%,$0.00
/doku.php?id=guild_wars_2_gear_breaking_and_gear_repair,638,626,00:00:01,92,6.52%,3.92%,$0.00
/doku.php?id=is_anonymity_bad,638,615,<00:00:00,71,7.04%,5.96%,$0.00
/doku.php?id=rift_17_gear_changes_blown_out_of_proportion,638,624,<00:00:00,89,3.37%,2.19%,$0.00
/doku.php?id=rift_18_pts_notes_overview,638,627,<00:00:00,82,9.76%,2.51%,$0.00
/doku.php?id=the_fall_of_blockbuster_video,638,627,00:00:01,82,12.20%,2.66%,$0.00
/doku.php?id=the_problem_with_pumping_and_dumping,638,627,<00:00:00,82,4.88%,4.39%,$0.00
/doku.php?id=devtome_writer_rules_read_me_first,637,627,00:00:04,87,6.90%,2.83%,$0.00
/doku.php?id=is_open_source_software_good_for_us,637,621,<00:00:00,86,6.98%,4.40%,$0.00
/doku.php?id=mail_forwarding_when_you_move,637,628,<00:00:00,77,2.60%,2.04%,$0.00
/doku.php?id=rift_ranked_warfronts_my_take,637,627,<00:00:00,68,5.88%,2.83%,$0.00
/doku.php?id=tera_why_i_hate_stuns,637,621,<00:00:00,90,10.00%,3.92%,$0.00
/doku.php?id=why_bitcoins_are_tied_to_fiat,637,626,00:00:01,82,3.66%,3.14%,$0.00
/doku.php?id=writing_prompt_-_thanksgiving_intervention,637,625,00:00:03,78,5.13%,2.20%,$0.00
/doku.php?id=final_fantasy_vii_review_-_why_i_love_it,636,616,<00:00:00,93,6.45%,3.77%,$0.00
/doku.php?id=left_4_dead_2_goes_free_and_crashes_steam,636,628,00:00:01,81,6.17%,2.20%,$0.00
/doku.php?id=living_through_natural_disasters,636,621,<00:00:00,87,9.20%,3.77%,$0.00
/doku.php?id=rift_-_which_faction_wins_more_war_fronts,636,624,00:00:01,73,12.33%,4.87%,$0.00
/doku.php?id=rift_tips_and_tricks_3,636,630,<00:00:00,76,9.21%,3.14%,$0.00
/doku.php?id=why_i_hate_stealth_rogues_in_rift,636,630,00:00:03,91,12.09%,4.09%,$0.00
/doku.php?id=bitcoin_price_drop_and_its_effect_on_miners,635,616,00:00:01,77,3.90%,2.20%,$0.00
/doku.php?id=cooking_with_gas_vs_electric,635,620,<00:00:00,91,4.40%,3.46%,$0.00
/doku.php?id=guild_wars_2_gets_shared_wallets,635,623,<00:00:00,80,8.75%,3.15%,$0.00
/doku.php?id=guild_wars_2_unlimited_mining_tools_-_are_they_worth_it,635,623,<00:00:00,85,5.88%,3.62%,$0.00
/doku.php?id=guild_wars_2_world_vs_world_siegerazer_and_siegecrusher_review,635,623,00:00:01,82,15.85%,3.46%,$0.00
/doku.php?id=guild_wars_2_world_vs_world_the_importance_of_commanders,635,624,<00:00:00,78,8.97%,2.83%,$0.00
/doku.php?id=rift_dd_guide,635,616,00:00:04,81,11.11%,4.41%,$0.00
/doku.php?id=the_importance_of_marketing_crypto_currencies,635,621,<00:00:00,69,13.04%,3.78%,$0.00
/doku.php?id=why_dynamic_levels_in_mmos_rock,635,619,00:00:02,81,1.23%,3.31%,$0.00
/doku.php?id=diablo_3_and_the_real_money_marketplace,634,622,00:00:02,82,10.98%,3.63%,$0.00
/doku.php?id=is_gaming_bad_for_you,634,625,<00:00:00,79,8.86%,3.79%,$0.00
/doku.php?id=rift_dsm_guide,634,626,<00:00:00,73,4.11%,2.52%,$0.00
/doku.php?id=the_rise_and_fall_of_maxcoin,634,623,00:00:01,74,8.11%,2.05%,$0.00
/doku.php?id=bitcoins_for_buyers_and_sellers_the_irreversible_currency,633,620,00:00:02,78,5.13%,3.32%,$0.00
/doku.php?id=fdic_insurance_and_misconceptions,633,624,<00:00:00,78,3.85%,2.37%,$0.00
/doku.php?id=guild_wars_2_why_i_dislike_daily_rewards,633,622,00:00:01,70,8.57%,3.16%,$0.00
/doku.php?id=rift_conquest_review,633,621,00:00:01,70,7.14%,2.37%,$0.00
/doku.php?id=the_goodwill_store,633,624,<00:00:00,75,5.33%,2.69%,$0.00
/doku.php?id=facebook_-_the_focal_point_of_communication,632,624,<00:00:00,84,4.76%,4.11%,$0.00
/doku.php?id=is_the_influx_of_altcoins_bad,632,622,<00:00:00,70,11.43%,3.64%,$0.00
/doku.php?id=rift_17_patch_notes_tldr,632,618,00:00:01,76,10.53%,3.48%,$0.00
/doku.php?id=rift_exchange_system,632,619,<00:00:00,64,4.69%,2.22%,$0.00
/doku.php?id=advertising_devcoin_via_bounties_and_shares_my_evaluation,631,619,<00:00:00,79,7.59%,3.96%,$0.00
/doku.php?id=do_scared_straight_programs_actually_work,631,624,00:00:01,87,10.34%,3.33%,$0.00
/doku.php?id=elder_scrolls_online_bug_-_logging_in_to_other_characters,631,614,<00:00:00,80,6.25%,2.38%,$0.00
/doku.php?id=rift_rex_-_the_inevitable_price_drop,631,612,00:00:03,113,30.09%,7.61%,$0.00
/doku.php?id=rift_soul_building_guide,631,618,00:00:01,72,12.50%,5.07%,$0.00
/doku.php?id=why_perpetual_mining_bonds_are_bad,631,626,<00:00:00,65,4.62%,6.02%,$0.00
/doku.php?id=adding_value_to_devcoins,630,614,00:00:02,67,11.94%,3.65%,$0.00
/doku.php?id=bitcoins_are_not_being_hoarded_as_much_as_originally_thought,630,623,<00:00:00,84,1.19%,2.06%,$0.00
/doku.php?id=critical_thinking_questions_and_evaluations_-_part_02,630,613,<00:00:00,95,15.79%,3.33%,$0.00
/doku.php?id=guild_wars_2_does_free_to_play_the_right_way,630,617,<00:00:00,86,2.33%,3.81%,$0.00
/doku.php?id=rift_10_vs_20_raids,630,623,00:00:02,75,1.33%,2.54%,$0.00
/doku.php?id=defiance_game_a_let_down,629,618,<00:00:00,61,4.92%,3.82%,$0.00
/doku.php?id=gas_vs_electric_dryers_which_is_better,629,615,00:00:01,69,5.80%,3.02%,$0.00
/doku.php?id=guild_wars_2_-_why_the_three_faction_system_rocks,629,616,00:00:01,69,7.25%,3.18%,$0.00
/doku.php?id=rift_planar_attunement_guide,629,615,00:00:01,87,10.34%,3.66%,$0.00
/doku.php?id=rift_rd_guide,629,613,00:00:03,84,15.48%,4.61%,$0.00
/doku.php?id=rmt_in_online_games,629,611,00:00:05,72,4.17%,2.70%,$0.00
/doku.php?id=the_importance_of_mmo_state_of_the_game_addresses,629,615,<00:00:00,70,4.29%,1.11%,$0.00
/doku.php?id=china_bans_bitcoin_exchanges,628,618,<00:00:00,83,8.43%,3.03%,$0.00
/doku.php?id=devtome_bot_attack_-_my_take,628,621,00:00:02,87,9.20%,3.50%,$0.00
/doku.php?id=guild_wars_2_world_vs_world_the_importance_of_dolyaks,628,613,<00:00:00,75,8.00%,2.39%,$0.00
/doku.php?id=moving_from_crypto_addresses_to_qr_codes,628,618,00:00:01,59,3.39%,2.07%,$0.00
/doku.php?id=north_texas_freezes_over_-_december_2013,628,614,00:00:02,92,4.35%,3.66%,$0.00
/doku.php?id=rift_why_content_nerfs_arent_always_bad,628,617,<00:00:00,71,7.04%,3.50%,$0.00
/doku.php?id=cloud_mining_is_it_the_future,627,620,<00:00:00,71,2.82%,3.83%,$0.00
/doku.php?id=gold_buying_in_games,627,620,<00:00:00,55,9.09%,9.09%,$0.00
/doku.php?id=how_devcoins_fight_deflation,627,611,<00:00:00,81,7.41%,3.67%,$0.00
/doku.php?id=the_curse_of_f2p_games,627,617,00:00:01,66,7.58%,4.31%,$0.00
/doku.php?id=the_fall_of_mt_gox_and_its_effect_on_bitcoin,627,615,00:00:01,77,9.09%,3.03%,$0.00
/doku.php?id=the_importance_of_commenting_software_for_developers,627,617,<00:00:00,71,2.82%,4.15%,$0.00
/doku.php?id=dogecoin_makes_exodus_from_cryptsy,626,617,<00:00:00,79,6.33%,2.24%,$0.00
/doku.php?id=mmos_and_reused_content,626,617,<00:00:00,81,16.05%,3.99%,$0.00
/doku.php?id=rift_rotf_guide,626,606,<00:00:00,66,4.55%,2.40%,$0.00
/doku.php?id=worst_f2p_model_ever_-_swtor,626,615,00:00:02,78,5.13%,3.67%,$0.00
/doku.php?id=bitcoins_and_irreversible_transactions,625,615,<00:00:00,73,9.59%,4.16%,$0.00
/doku.php?id=coinbase_problems_-_slow_and_broken_transactions,625,608,<00:00:00,85,5.88%,2.72%,$0.00
/doku.php?id=rift_auction_listing_fee_opinion,625,606,00:00:01,86,4.65%,2.72%,$0.00
/doku.php?id=rift_lag_sparks_bonus_rewards_august_2013,625,611,<00:00:00,86,8.14%,2.72%,$0.00
/doku.php?id=defiance_shadow_war_guide,624,616,<00:00:00,71,11.27%,3.37%,$0.00
/doku.php?id=rift_fishing_preview,624,601,00:00:03,75,5.33%,2.08%,$0.00
/doku.php?id=rift_post_t3_boons,624,616,00:00:01,93,9.68%,3.37%,$0.00
/doku.php?id=rift_pre_and_post_sl_difficulty,624,613,<00:00:00,80,6.25%,2.24%,$0.00
/doku.php?id=tera_cultists_refuge_guide,624,612,<00:00:00,86,8.14%,3.69%,$0.00
/doku.php?id=usb_block_eruptors,624,611,00:00:01,73,6.85%,2.88%,$0.00
/doku.php?id=why_bitpay_rocks,624,616,<00:00:00,63,9.52%,2.40%,$0.00
/doku.php?id=why_i_dislike_ff8,624,613,<00:00:00,75,12.00%,2.88%,$0.00
/doku.php?id=grinding_in_games,623,609,00:00:01,69,8.70%,3.21%,$0.00
/doku.php?id=my_thoughts_of_soul_binding_gear_in_games,623,605,<00:00:00,75,1.33%,4.82%,$0.00
/doku.php?id=rift_19_conquest_walkthrough,623,605,00:00:02,72,2.78%,3.21%,$0.00
/doku.php?id=rift_ingame_references_1,623,614,00:00:01,80,5.00%,3.53%,$0.00
/doku.php?id=rift_tips_and_tricks_1,623,610,00:00:02,73,9.59%,3.53%,$0.00
/doku.php?id=why_ebooks_are_a_bad_value,623,613,<00:00:00,71,8.45%,2.89%,$0.00
/doku.php?id=rift_unhallowed_boneforge,622,609,<00:00:00,88,10.23%,4.18%,$0.00
/doku.php?id=touch_screen_monitors_-_monitors_of_the_future,622,607,00:00:01,68,8.82%,3.05%,$0.00
/doku.php?id=bitcoin_poker_and_the_lack_of_population,621,605,00:00:02,87,5.75%,2.42%,$0.00
/doku.php?id=dungeon_difficulty_in_guild_wars_2,621,610,00:00:01,65,10.77%,2.42%,$0.00
/doku.php?id=are_hybrids_worth_the_cost,620,611,<00:00:00,78,3.85%,2.90%,$0.00
/doku.php?id=linear_vs_free_exploration_games,620,610,00:00:02,72,1.39%,3.23%,$0.00
/doku.php?id=rift_raid_progress_ranking_opinion,620,610,<00:00:00,91,13.19%,3.06%,$0.00
/doku.php?id=gambling_and_age_requirements_-_my_take,619,604,00:00:01,97,12.37%,3.07%,$0.00
/doku.php?id=guild_wars_2_doing_wvw_naked,619,604,00:00:04,77,14.29%,4.52%,$0.00
/doku.php?id=how_bitcoin_cuts_down_on_payment_fees,619,608,<00:00:00,67,4.48%,3.39%,$0.00
/doku.php?id=increasing_your_cars_mpg,619,601,00:00:02,63,7.94%,3.23%,$0.00
/doku.php?id=tera_bastion_of_lok_guide,619,606,00:00:01,86,16.28%,3.72%,$0.00
/doku.php?id=guild_wars_2_upcoming_pvp_rewards_road_map_opinions,618,607,00:00:01,63,7.94%,2.59%,$0.00
/doku.php?id=rapidballs_review_and_overview,618,608,<00:00:00,92,4.35%,3.24%,$0.00
/doku.php?id=rift_17_review,618,604,00:00:02,58,6.90%,2.91%,$0.00
/doku.php?id=bitcoin_vs_credit_cards,617,608,00:00:03,78,3.85%,3.57%,$0.00
/doku.php?id=betarigs_an_updated_look,616,601,00:00:03,83,3.61%,2.60%,$0.00
/doku.php?id=is_bitcoin_a_currency,616,609,<00:00:00,61,9.84%,3.08%,$0.00
/doku.php?id=rested_experience_in_role_playing_games,616,606,00:00:01,91,8.79%,3.25%,$0.00
/doku.php?id=casinobitco.in_first_ipo_is_successful,615,604,00:00:02,91,10.99%,3.90%,$0.00
/doku.php?id=guild_wars_2_structured_pvp_needs_a_ready_check,615,600,<00:00:00,82,9.76%,3.09%,$0.00
/doku.php?id=warning:do_not_trust_others_opinions_on_crypto_currency_trades,615,602,<00:00:00,86,6.98%,2.44%,$0.00
/doku.php?id=critical_thinking_questions_and_evaluations_-_part_03,614,601,00:00:01,78,10.26%,4.40%,$0.00
/doku.php?id=primecoin_my_thoughts,614,610,00:00:01,79,8.86%,3.91%,$0.00
/doku.php?id=sto_pvp_maps,614,596,<00:00:00,85,11.76%,4.23%,$0.00
/doku.php?id=increasing_devcoins_market_cap_what_needs_to_happen,613,603,<00:00:00,58,3.45%,2.12%,$0.00
/doku.php?id=are_online_wallets_safe,612,600,00:00:02,76,5.26%,7.52%,$0.00
/doku.php?id=capture_the_flag_-_my_thoughts,612,598,<00:00:00,75,9.33%,3.10%,$0.00
/doku.php?id=rift_auction_house_undercutting,612,601,00:00:02,82,13.41%,3.43%,$0.00
/doku.php?id=rift_ember_isle_ia_preview,612,605,<00:00:00,80,8.75%,2.61%,$0.00
/doku.php?id=rift_instant_adventure_popularity,612,595,00:00:01,96,6.25%,3.10%,$0.00
/doku.php?id=why_inputsio_is_awesome,612,596,00:00:02,70,0.00%,2.12%,$0.00
/doku.php?id=a_look_at_block_payout_halving,611,604,<00:00:00,75,4.00%,3.93%,$0.00
/doku.php?id=guild_wars_2_structured_pvp_-_a_look_at_skyhammer,611,599,00:00:01,78,2.56%,3.44%,$0.00
/doku.php?id=proof_of_work_vs_proof_of_stake,610,595,00:00:01,72,13.89%,3.61%,$0.00
/doku.php?id=rift_-_why_queues_take_so_long_as_dps,610,596,<00:00:00,82,13.41%,5.08%,$0.00
/doku.php?id=rift_2.3_hotfix_8_pvp_gear_changes,610,598,<00:00:00,69,11.59%,3.44%,$0.00
/doku.php?id=annoyance_with_rift_warfronts,609,600,<00:00:00,93,8.60%,3.61%,$0.00
/doku.php?id=free_server_transfers_in_online_games_good_or_bad,609,595,00:00:01,75,4.00%,5.25%,$0.00
/doku.php?id=the_problem_with_free_web_hosting,608,589,<00:00:00,78,5.13%,3.12%,$0.00
/doku.php?id=why_guild_based_content_is_important_in_mmos,608,595,<00:00:00,75,6.67%,3.12%,$0.00
/doku.php?id=gw2_guide_to_understanding_the_market,606,590,00:00:05,64,9.38%,5.45%,$0.00
/doku.php?id=new_vs_used_cars_-_an_informative_look,606,593,<00:00:00,77,2.60%,2.81%,$0.00
/doku.php?id=rift_economy_and_why_its_dead,606,595,<00:00:00,95,9.47%,2.81%,$0.00
/doku.php?id=coin_mixing_services_an_informative_look,605,599,00:00:02,90,2.22%,3.64%,$0.00
/doku.php?id=preparing_for_black_friday_sales_maximizing_your_savings,605,594,<00:00:00,74,5.41%,3.97%,$0.00
/doku.php?id=rift_storm_breaker_protocol,605,590,00:00:03,72,4.17%,2.81%,$0.00
/doku.php?id=rift_warfront_mentality,605,587,<00:00:00,86,8.14%,2.81%,$0.00
/doku.php?id=used_car_buying_guide,605,594,00:00:01,68,10.29%,9.75%,$0.00
/doku.php?id=the_problem_with_hybrid_platform_games,603,596,<00:00:00,58,6.90%,3.98%,$0.00
/doku.php?id=gw2_introduces_new_stat_-_ferocity,602,587,<00:00:00,87,3.45%,1.99%,$0.00
/doku.php?id=my_crypto_investment_plan_-_arbitrage,602,594,00:00:01,76,9.21%,4.32%,$0.00
/doku.php?id=rift_high_level_low_level_zones,602,589,<00:00:00,85,7.06%,3.16%,$0.00
/doku.php?id=guild_wars_2_world_vs_world_ranks_should_be_account_wide,599,586,<00:00:00,81,6.17%,2.50%,$0.00
/doku.php?id=why_the_wii_u_is_not_too_popular,599,591,00:00:01,91,9.89%,3.01%,$0.00
/doku.php?id=a_look_at_hypermiling,598,583,00:00:03,68,4.41%,2.34%,$0.00
/doku.php?id=guild_wars_2_why_too_much_siege_is_bad,598,589,00:00:01,86,9.30%,3.34%,$0.00
/doku.php?id=playing_cryptos_like_stocks,597,584,<00:00:00,80,6.25%,4.86%,$0.00
/doku.php?id=lets_play_rift_episode_2,595,590,00:00:03,76,3.95%,2.18%,$0.00
/doku.php?id=rift_expert_dungeon_merge,595,573,00:00:02,71,9.86%,4.37%,$0.00
/doku.php?id=why_tanks_hate_pugs,595,590,<00:00:00,60,8.33%,4.03%,$0.00
/doku.php?id=lets_play_gw2_episode_3,592,581,<00:00:00,81,9.88%,4.05%,$0.00
/doku.php?id=chick_fil_a_monthly_calendars_-_a_review,590,577,00:00:01,68,7.35%,2.71%,$0.00
/doku.php?id=start,590,291,00:00:45,73,60.27%,19.32%,$0.00
/doku.php?id=rift_-_general_information,589,578,00:00:01,70,12.86%,6.62%,$0.00
/doku.php?id=should_crypto_currencies_be_treated_as_money,588,578,<00:00:00,62,4.84%,1.87%,$0.00
/doku.php?id=electric_cars_and_the_path_ahead,585,577,<00:00:00,75,6.67%,4.44%,$0.00
/doku.php?id=lets_play_fiesta_episode_1,583,573,<00:00:00,65,1.54%,4.46%,$0.00
/doku.php?id=rift_kb_guide,583,568,<00:00:00,59,1.69%,2.40%,$0.00
/doku.php?id=rift_should_crafted_gear_be_onpar_with_raid,583,575,<00:00:00,70,5.71%,2.57%,$0.00
/doku.php?id=renewable_energy_and_its_problems,581,576,<00:00:00,69,5.80%,3.79%,$0.00
/doku.php?id=rift_fc_guide,580,569,00:00:01,63,1.59%,2.93%,$0.00
/doku.php?id=lets_play_gw2_episode_2,579,568,00:00:03,62,0.00%,1.90%,$0.00
/doku.php?id=rift_it_guide,575,560,<00:00:00,66,7.58%,2.61%,$0.00
/doku.php?id=lets_play_rift_episode_3,574,569,<00:00:00,57,5.26%,5.57%,$0.00
/doku.php?id=rift_lh_guide,572,567,<00:00:00,68,8.82%,4.02%,$0.00
/doku.php?id=rift_rotf_dungeon_review,572,563,<00:00:00,58,8.62%,3.67%,$0.00
/doku.php?id=state_of_mcxnow_end_of_december_2013,572,558,<00:00:00,72,5.56%,3.15%,$0.00
/doku.php?id=determining_bias_in_information,571,565,<00:00:00,84,8.33%,3.33%,$0.00
/doku.php?id=gw2_wvw_overview,556,544,00:00:04,46,13.04%,24.10%,$0.00
/doku.php?id=lets_play_rift_episode_1,556,545,<00:00:00,76,3.95%,4.32%,$0.00
/doku.php?id=lets_play_gw2_episode_1,555,546,<00:00:00,51,3.92%,2.88%,$0.00
/doku.php?id=lets_play_rift_episode_6,542,533,00:00:04,65,4.62%,2.58%,$0.00
/doku.php?id=lets_play_rift_episode_5,533,525,00:00:03,81,1.23%,3.00%,$0.00
/doku.php?id=lets_play_rift_episode_7,533,523,00:00:02,68,5.88%,3.75%,$0.00
/doku.php?id=lets_play_rift_episode_4,526,515,<00:00:00,56,5.36%,2.28%,$0.00
/doku.php?id=smf_incoming_email_capability,474,7,00:00:33,3,66.67%,0.63%,$0.00
/doku.php?id=traffic_exchange,422,7,00:00:33,4,25.00%,1.18%,$0.00
/doku.php?id=installing_glass_blocks_professionally,402,279,00:03:10,278,73.38%,68.91%,$0.00
/doku.php?id=lucas_chess,385,306,00:05:14,305,79.34%,75.06%,$0.00
/doku.php?id=a_massive_investigation_of_instamines_and_fastmines_for_the_top_alt_coins,334,278,00:04:30,272,82.35%,77.54%,$0.00
/doku.php?id=what_is_really_going_on_between_the_palestinians_and_the_israelis,321,40,00:02:30,22,22.73%,7.79%,$0.00
/doku.php?id=the_5_13_62_ema_strategy,293,261,00:04:33,260,87.69%,86.35%,$0.00
/doku.php?id=bitcoin_2.0,251,240,00:02:07,239,86.61%,86.06%,$0.00
/doku.php?id=earn_devcoins_by_writing,248,209,00:01:46,111,70.27%,58.87%,$0.00
/doku.php?id=devcoin,240,206,00:02:00,186,68.28%,65.00%,$0.00
/doku.php?id=open_source_home_automation_projects,230,198,00:05:56,197,85.28%,85.22%,$0.00
/doku.php?id=high_mobility_champions_in_league_of_legends,226,215,00:01:46,215,93.02%,92.92%,$0.00
/doku.php?id=pywallet,194,158,00:04:53,158,83.54%,78.87%,$0.00
/doku.php?id=candida,177,143,00:06:28,141,82.98%,79.66%,$0.00
/doku.php?id=cardiovascular_disease,177,148,00:05:27,148,86.49%,81.92%,$0.00
/doku.php?id=architecture_tadao_ando,173,159,00:09:36,159,89.94%,90.17%,$0.00
/doku.php?id=wiki:user:dglenn,169,16,00:00:28,1,100.00%,1.78%,$0.00
/doku.php?id=cancer_home_treatment,157,130,00:05:33,130,87.69%,82.80%,$0.00
/doku.php?id=why_men_don_t_exercise,154,94,00:03:45,87,71.26%,58.44%,$0.00
/doku.php?id=10_and_21_ema_crossover_strategy,150,109,00:17:54,108,76.85%,72.67%,$0.00
/doku.php?id=devcoin_bounty_now,147,120,00:02:19,109,76.15%,62.59%,$0.00
/doku.php?id=how_to_run_a_successful_market_stall,141,120,00:05:27,119,84.87%,82.98%,$0.00
/doku.php?id=ingress_startup_guide,133,112,00:07:22,109,82.57%,81.95%,$0.00
/doku.php?id=bitshares_-_market_pegging,127,117,00:07:43,115,90.43%,89.76%,$0.00
/doku.php?id=installing_windows_after_ubuntu,123,119,00:06:30,119,96.64%,95.93%,$0.00
/doku.php?id=simple_and_profitable_weekly_set_and_forget_strategy_for_forex,120,104,00:05:55,102,86.27%,84.17%,$0.00
/doku.php?id=category:short_stories,118,16,00:00:44,1,0.00%,2.54%,$0.00
/doku.php?id=a_review_of_bitvisitor,115,111,00:05:02,111,93.69%,93.91%,$0.00
/doku.php?id=list_of_bitcoin_giveaways_and_faucets,109,62,00:02:25,62,66.13%,55.96%,$0.00
/doku.php?id=if_you_promised_to_make_a_small_donation_if_a_product_healed_you_would_you_do_it,108,11,00:02:56,4,25.00%,8.33%,$0.00
/doku.php?id=bitcoin-trader_review,107,103,00:02:07,102,92.16%,92.52%,$0.00
/doku.php?id=ripple_gateways,106,70,00:02:29,69,75.36%,62.26%,$0.00
/doku.php?id=how_to_choose_which_currency_pairs_to_trade,98,87,00:06:12,87,93.10%,88.78%,$0.00
/doku.php?id=devtome_ease_of_use_improvements,96,16,00:00:29,2,50.00%,2.08%,$0.00
/doku.php?id=pollen_and_plagues,93,13,00:00:22,0,0.00%,1.08%,$0.00
/doku.php?id=queen_silvia_of_sweden,93,80,00:03:03,80,87.50%,84.95%,$0.00
/doku.php?id=how_to_setup_a_merged_mining_bitcoin_pool_with_poolserverj,92,72,00:04:01,71,76.06%,76.09%,$0.00
/doku.php?id=respecting_elders_an_american_tragedy,89,12,00:00:21,1,0.00%,0.00%,$0.00
/doku.php?id=the_southern_gentleman_part_four,88,12,00:00:21,1,0.00%,0.00%,$0.00
/doku.php?id=winter_sky_poem,88,13,00:00:31,0,0.00%,1.14%,$0.00
/doku.php?id=wounded_minds,88,14,00:00:23,0,0.00%,1.14%,$0.00
/doku.php?id=hypocrite,86,13,00:00:19,0,0.00%,1.16%,$0.00
/doku.php?id=lg_refrigerator_water_filter,86,82,00:04:38,82,91.46%,91.86%,$0.00
/doku.php?id=the_best_aram_champions_in_league_of_legends,86,83,00:16:59,83,96.39%,96.51%,$0.00
/doku.php?id=especially_for_new_devtome_writers,85,35,00:00:18,32,3.12%,3.53%,$0.00
/doku.php?id=overview_of_neil_v_biggers,84,21,00:00:21,12,83.33%,11.90%,$0.00
/doku.php?id=the_incredibly_compelling_case_for_reincarnation,83,26,00:04:31,11,63.64%,24.10%,$0.00
/doku.php?id=the_southern_gentleman_part_two,83,11,00:00:22,0,0.00%,0.00%,$0.00
/doku.php?id=elements_of_an_effective_testimony,82,15,00:00:29,2,100.00%,2.44%,$0.00
/doku.php?id=finding_contentment_poem,81,10,00:00:20,0,0.00%,0.00%,$0.00
/doku.php?id=hardships,81,14,00:00:38,1,0.00%,0.00%,$0.00
/doku.php?id=how_to_format_your_book_for_createspace_using_scrivener,81,74,00:10:50,74,90.54%,91.36%,$0.00
/doku.php?id=one_in_four,81,13,00:00:21,0,0.00%,1.23%,$0.00
/doku.php?id=plan_for_investing_in_group_buys,81,13,00:00:21,1,0.00%,0.00%,$0.00
/doku.php?id=spring_cleaning_life_hacks,81,13,00:00:28,0,0.00%,0.00%,$0.00
/doku.php?id=the_southern_gentleman_part_one,81,13,00:00:21,0,0.00%,0.00%,$0.00
/doku.php?id=another_day_in_paradise_steamy_night,80,14,00:00:20,0,0.00%,3.75%,$0.00
/doku.php?id=bad_cops_or_bad_rap,80,14,00:00:25,1,100.00%,2.50%,$0.00
/doku.php?id=caught_off_guard,80,12,00:00:21,1,0.00%,0.00%,$0.00
/doku.php?id=article_review_of_law_enforcement_connecting_with_kids_by_michelle_perrin,78,12,00:00:22,0,0.00%,0.00%,$0.00
/doku.php?id=how_to_avoid_a_traffic_ticket,78,12,00:00:39,1,0.00%,1.28%,$0.00
/doku.php?id=the_story_of_how_i_became_pen_pals_and_phone_friends_with_the_most_hated_woman_in_america,78,17,00:01:55,7,85.71%,14.10%,$0.00
/doku.php?id=tennessee_cop_chokes_out_peaceful_student_in_handcuffs,77,71,00:04:24,70,94.29%,90.91%,$0.00
/doku.php?id=becoming_rough_men,75,12,00:00:21,1,0.00%,1.33%,$0.00
/doku.php?id=epic_love_poem,75,12,00:00:27,1,0.00%,0.00%,$0.00
/doku.php?id=phenylalanine_to_amphetamine_or_n-methylamphetamine,75,62,00:06:17,61,81.97%,80.00%,$0.00
/doku.php?id=the_role_of_social_media_in_modern_policing,75,15,00:00:45,6,100.00%,8.00%,$0.00
/doku.php?id=wiki:user:metal_dogs,75,6,00:00:45,0,0.00%,4.00%,$0.00
/doku.php?id=amnesty_or_enforcement,73,13,00:00:25,0,0.00%,2.74%,$0.00
/doku.php?id=attic_conversions,73,56,00:02:44,55,92.73%,75.34%,$0.00
/doku.php?id=deep_winter_day_poem,73,13,00:00:20,3,33.33%,2.74%,$0.00
/doku.php?id=final_fantasy_xiv_-_stats,73,70,00:00:53,67,98.51%,95.89%,$0.00
/doku.php?id=the_southern_gentleman_part_three,73,12,00:00:20,0,0.00%,0.00%,$0.00
/doku.php?id=beneath_the_moon_poem,72,12,00:00:30,1,0.00%,0.00%,$0.00
/doku.php?id=how_to_remove_antifouling,72,67,00:05:35,66,92.42%,93.06%,$0.00
/doku.php?id=protecting_against_burglary,72,12,00:00:21,1,0.00%,0.00%,$0.00
/doku.php?id=remember_me_2013_poem,72,14,00:00:22,0,0.00%,0.00%,$0.00
/doku.php?id=scrypt_altcoin_cloning_guide&rev=1391981820,72,68,00:09:06,57,89.47%,90.28%,$0.00
/doku.php?id=how_to_root_your_samsung_galaxy_android_phone,71,57,00:04:27,57,84.21%,77.46%,$0.00
/doku.php?id=perfection_poem,71,12,00:00:28,0,0.00%,0.00%,$0.00
/doku.php?id=article_review_of_telling_a_story_through_social_media,69,14,00:00:22,1,0.00%,1.45%,$0.00
/doku.php?id=cracked_cookies,69,12,00:00:20,0,0.00%,0.00%,$0.00
/doku.php?id=passion_on_the_horizon_poem,69,13,00:00:24,0,0.00%,2.90%,$0.00
/doku.php?id=muse_poem,68,11,00:00:21,0,0.00%,1.47%,$0.00
/doku.php?id=article_review_of_the_security_leader_by_diane_ritchey,67,10,00:00:19,0,0.00%,1.49%,$0.00
/doku.php?id=start&do=login,67,64,00:00:38,17,0.00%,1.49%,$0.00
/doku.php?id=literary_analysis_of_george_gissings_the_odd_women,65,52,00:04:12,52,76.92%,78.46%,$0.00
/doku.php?id=5_and_6_ema_scalping_system,64,57,00:03:33,55,87.27%,87.50%,$0.00
/doku.php?id=wyatt_earp_-_fact_and_myth,64,57,00:05:29,57,89.47%,87.50%,$0.00
/doku.php?id=law_enforcement_and_technology,63,16,00:00:21,2,50.00%,1.59%,$0.00
/doku.php?id=devcoin_block_explorer,62,50,00:02:13,45,75.56%,74.19%,$0.00
/doku.php?id=sheepdogs_papacrusher,62,14,00:00:20,0,0.00%,0.00%,$0.00
/doku.php?id=saturn_the_brutal_teacher,61,61,00:00:00,61,100.00%,100.00%,$0.00
/doku.php?id=start&do=index/,61,53,00:01:18,4,50.00%,26.23%,$0.00
/doku.php?id=the_theme_of_coming_of_age_and_its_significance_to_the_novel_to_kill_a_mockingbird,61,51,00:09:47,50,84.00%,81.97%,$0.00
/doku.php?id=category:novels,60,8,00:00:18,1,100.00%,1.67%,$0.00
/doku.php?id=helping_the_poor,58,9,00:00:20,0,0.00%,0.00%,$0.00
/doku.php?id=final_fantasy_xiv_-_item_level_sets_black_mage,57,54,00:05:12,54,94.44%,94.74%,$0.00
/doku.php?id=strengths_and_weaknesses_of_the_break_even_concept,57,51,00:05:29,51,90.20%,89.47%,$0.00
/doku.php?id=review_of_man_the_state_and_war,56,52,00:05:44,52,92.31%,92.86%,$0.00
/doku.php?id=hyip-ponzi-schemers,55,45,00:14:42,45,86.67%,81.82%,$0.00
/doku.php?id=earning_giftcards_with_mpoints_apps,53,43,00:05:50,43,86.05%,81.13%,$0.00
/doku.php?id=sha256_altcoin_cloning_guide,53,47,00:01:10,30,46.67%,58.49%,$0.00
/doku.php?id=how_to_use_an_opponent_s_strength_against_them,51,45,00:04:36,45,88.89%,88.24%,$0.00
/doku.php?id=wiki:user:bomac,50,35,00:00:37,7,71.43%,14.00%,$0.00
/doku.php?id=a_review_of_bitcoinget,49,45,00:05:32,42,88.10%,81.63%,$0.00
/doku.php?id=wiki:user:masscash,48,14,00:00:08,0,0.00%,10.42%,$0.00
/doku.php?id=seeking_sage,47,13,00:01:25,7,28.57%,8.51%,$0.00
/doku.php?id=where_to_spend_your_devcoins,47,32,00:02:31,30,76.67%,68.09%,$0.00
/doku.php?id=ingress_tips_and_tricks,45,39,00:04:42,39,84.62%,77.78%,$0.00
/doku.php?id=insightforaltcoins,45,37,00:04:58,33,84.85%,77.78%,$0.00
/doku.php?id=phantoms,45,6,00:01:00,0,0.00%,4.44%,$0.00
/doku.php?id=player_piano_-_john_updike,45,39,00:03:01,38,86.84%,84.44%,$0.00
/doku.php?id=an_example_anthropology_phd_research_proposal,44,37,00:06:36,37,89.19%,84.09%,$0.00
/doku.php?id=the_halloween_macabresque_the_crime_story_with_several_puzzles,44,44,00:00:24,41,95.12%,93.18%,$0.00
/doku.php?id=wiki:user:caprigon,44,3,00:00:07,1,100.00%,6.82%,$0.00
/doku.php?id=analyzation_on_to_kill_a_mockingbird,43,37,00:08:16,36,91.67%,86.05%,$0.00
/doku.php?id=how_to_get_setup_earning_devcoins_by_writing,43,29,00:02:31,8,25.00%,30.23%,$0.00
/doku.php?id=wiki:user:samkary,43,13,00:00:28,2,50.00%,6.98%,$0.00
/doku.php?id=creating_a_merged_yum_repository,42,37,00:03:58,37,89.19%,88.10%,$0.00
/doku.php?id=wiki:user:darknessfell,42,17,00:00:10,1,0.00%,0.00%,$0.00
/doku.php?id=my_father_s_penis,41,11,00:00:18,0,0.00%,0.00%,$0.00
/doku.php?id=euclid,40,25,00:02:50,25,60.00%,62.50%,$0.00
/doku.php?id=reprogramme_the_bmw_3g_ews_alarm_system,40,37,00:13:47,37,94.59%,92.50%,$0.00
/doku.php?id=a_massive_investigation_of_instamines_and_fastmines_for_the_top_alt_coins&s[=,39,35,00:01:23,35,91.43%,87.18%,$0.00
/doku.php?id=final_fantasy_xiv_advanced_tactics_-_paladin_mechanics_and_analysis_for_advanced_players,39,37,00:08:27,36,86.11%,84.62%,$0.00
/doku.php?id=the_myth_of_the_lazy_miner,39,32,00:03:20,32,78.12%,76.92%,$0.00
/doku.php?id=arthritis,38,38,00:03:11,36,97.22%,94.74%,$0.00
/doku.php?id=category:fiction,38,12,00:00:06,0,0.00%,0.00%,$0.00
/doku.php?id=start&do=recent,37,26,00:00:19,7,85.71%,32.43%,$0.00
/doku.php?id=build_backlinks_on_facebook,36,34,00:02:26,34,91.18%,91.67%,$0.00
/doku.php?id=the_bible_-_fundamentalist_vs_contextualist_approach,36,34,00:01:07,33,93.94%,94.44%,$0.00
/doku.php?id=a_message_to_crypto_daytraders,35,4,00:01:36,1,0.00%,0.00%,$0.00
/doku.php?id=guatemala_cell_phone_and_internet_hack_revealed,35,18,00:01:13,15,86.67%,42.86%,$0.00
/doku.php?id=final_fantasy_xiv_-_item_level_sets_white_mage,34,32,00:04:14,32,93.75%,94.12%,$0.00
/doku.php?id=how_to_use_the_third_way_philosophy_for_yourself,34,3,00:01:17,0,0.00%,0.00%,$0.00
/doku.php?id=vietnam_veterans_memorial_controversy,34,27,00:05:43,26,88.46%,73.53%,$0.00
/doku.php?id=devtome_writers,33,15,00:00:30,2,0.00%,3.03%,$0.00
/doku.php?id=poison_ivy,33,30,00:13:58,30,90.00%,90.91%,$0.00
/doku.php?id=scrypt_altcoin_cloning_guide&rev=1375409063,33,27,00:02:35,12,25.00%,54.55%,$0.00
/doku.php?id=the_best_top_lane_champions_in_league_of_legends,33,30,00:01:01,29,89.66%,87.88%,$0.00
/doku.php?id=55_exponential_moving_average_strategy,32,29,00:06:58,29,89.66%,87.50%,$0.00
/doku.php?id=california_pizza_kitchen_case_study,32,24,00:00:50,24,70.83%,68.75%,$0.00
/doku.php?id=japanese_throwing_weapons,32,26,00:02:23,26,84.62%,78.12%,$0.00
/doku.php?id=especially_for_new_devtome_writers&do=login,31,30,00:00:19,0,0.00%,3.23%,$0.00
/doku.php?id=garen_top_guide,31,30,00:06:55,28,92.86%,87.10%,$0.00
/doku.php?id=getting_started_with_peercoin_on_mac_os_x,31,30,00:01:30,30,96.67%,96.77%,$0.00
/doku.php?id=please_stop_helping_us_review,31,27,00:00:39,19,94.74%,64.52%,$0.00
/doku.php?id=selling_digital_currency_on_ebay_or_by_paypal,31,31,00:00:17,31,93.55%,93.55%,$0.00
/doku.php?id=btc-e.com_api_guide,30,16,00:03:06,16,81.25%,53.33%,$0.00
/doku.php?id=the_third_way_philosophy_explained,30,3,00:01:20,0,0.00%,0.00%,$0.00
/doku.php?id=an_idea_worth_spreading_amongst_devcoin_supporters,29,3,00:01:21,0,0.00%,0.00%,$0.00
/doku.php?id=final_fantasy_xiv_-_races,29,21,00:01:26,19,57.89%,55.17%,$0.00
/doku.php?id=mythological_creatures,29,20,00:02:04,20,80.00%,68.97%,$0.00
/doku.php?id=agent_of_change_how_conspiracy_theory_can_become_conspiracy_fact,28,3,00:01:17,0,0.00%,0.00%,$0.00
/doku.php?id=central_processing_unit,28,20,00:02:32,20,75.00%,71.43%,$0.00
/doku.php?id=devcoin_division_proposal,28,21,00:04:35,19,73.68%,60.71%,$0.00
/doku.php?id=the_westminster_model,28,27,00:01:54,27,96.30%,96.43%,$0.00
/doku.php?id=a_third_way_thought_experiment_part_1,27,3,00:01:17,0,0.00%,0.00%,$0.00
/doku.php?id=a_truce_between_omnivores_and_vegetarians,27,8,00:01:17,4,100.00%,18.52%,$0.00
/doku.php?id=agent_of_change_how_conspiracy_theory_can_become_conspiracy_fact_part_2,27,3,00:01:16,0,0.00%,0.00%,$0.00
/doku.php?id=bollinger_bands,27,25,00:08:26,24,91.67%,92.59%,$0.00
/doku.php?id=final_fantasy_xiv_-_item_level_sets_paladin,27,25,00:04:41,24,87.50%,88.89%,$0.00
/doku.php?id=paganism_through_history,27,21,00:01:25,20,75.00%,77.78%,$0.00
/doku.php?id=the_buddhas_analysis_of_the_bhagavad-gita,27,25,00:03:52,25,92.00%,92.59%,$0.00
/doku.php?id=wiki:user:lists_that_could_change_the_course_of_history,27,26,00:03:41,26,92.31%,92.59%,$0.00
/doku.php?id=a_third_way_thought_experiment_part_2,26,3,00:01:17,0,0.00%,0.00%,$0.00
/doku.php?id=devcoin_could_literally_make_great_ideas_a_reality,26,2,00:01:23,0,0.00%,0.00%,$0.00
/doku.php?id=fiddlesticks_jungle_guide,26,23,00:00:58,23,91.30%,88.46%,$0.00
/doku.php?id=final_fantasy_xiv_-_item_level_sets_dragoon,26,24,00:06:07,24,95.83%,88.46%,$0.00
/doku.php?id=final_fantasy_xiv_races_miqote,26,22,00:03:49,15,66.67%,53.85%,$0.00
/doku.php?id=house_arrest_s02e11_the_sopranos,26,20,00:00:40,20,80.00%,69.23%,$0.00
/doku.php?id=how-to-level-to-60-tera-online,26,25,00:00:04,25,96.00%,96.15%,$0.00
/doku.php?id=introduction_to_chakra,26,17,00:01:47,17,58.82%,65.38%,$0.00
/doku.php?id=saving_money_tips_buying_a_new_car&do=edit&rev=0,26,1,00:01:03,0,0.00%,0.00%,$0.00
/doku.php?id=seeking_sage_-_final_chapter,26,10,00:00:35,1,0.00%,11.54%,$0.00
/doku.php?id=the_stunning_third_way_in_the_choice_of_unions_or_no_unions,26,2,00:01:17,0,0.00%,0.00%,$0.00
/doku.php?id=where_to_spend_your_cryptocurrencies,26,15,00:00:45,11,54.55%,38.46%,$0.00
/doku.php?id=wiki:user:dedan_deds,26,10,00:00:59,4,0.00%,0.00%,$0.00
/doku.php?id=are_these_magicians_real,25,25,00:00:00,25,100.00%,100.00%,$0.00
/doku.php?id=book_review_of_c.s._lewis_s_till_we_have_faces,25,23,00:04:03,23,91.30%,92.00%,$0.00
/doku.php?id=devtome_stats,25,24,00:01:04,8,62.50%,36.00%,$0.00
/doku.php?id=fasting_as_an_advanced_tool_for_holistic_health,25,3,00:01:21,0,0.00%,0.00%,$0.00
/doku.php?id=final_fantasy_xiv_races_roegadyn,25,17,00:03:21,16,75.00%,56.00%,$0.00
/doku.php?id=scrypt_altcoin_cloning_guide&rev=1369624696,25,22,00:00:11,15,6.67%,36.00%,$0.00
/doku.php?id=the_importance_of_mineral_salts,25,20,00:06:24,20,80.00%,80.00%,$0.00
/doku.php?id=the_natural_superiority_of_homeopathy_and_the_conspiracy_against_you_finding_out,25,23,00:00:55,22,95.45%,88.00%,$0.00
/doku.php?id=a_flexitarian_approach_to_healthcare,24,3,00:01:13,0,0.00%,0.00%,$0.00
/doku.php?id=cameron_hooker_slave_master,24,22,00:03:18,22,95.45%,91.67%,$0.00
/doku.php?id=install_devcoin_ubuntu,24,18,00:03:10,16,75.00%,58.33%,$0.00
/doku.php?id=religious_beliefs_and_practices_of_the_lakota_sioux,24,20,00:05:26,20,85.00%,83.33%,$0.00
/doku.php?id=secure_your_bitcoin_without_breaking_your_balls-a_simple_guide_to_cold_storage,24,23,00:04:44,22,95.45%,95.83%,$0.00
/doku.php?id=an_intro_to_the_history_of_muggle_magic,23,3,00:01:14,0,0.00%,0.00%,$0.00
/doku.php?id=bancassurance_in_europe_part_2,23,17,00:04:27,13,76.92%,60.87%,$0.00
/doku.php?id=game_review_naruto_shippuden_ultimate_ninja_storm_3_full_burst_part_2,23,23,00:04:41,22,95.45%,91.30%,$0.00
/doku.php?id=qualitative_and_quantitative_approaches_to_studying_the_impact_of_technology_in_the_classroom,23,17,00:07:07,17,76.47%,73.91%,$0.00
/doku.php?id=tangerine_essay,23,15,00:08:17,15,73.33%,65.22%,$0.00
/doku.php?id=why_crypto_currencies_are_still_the_buy_opportunity_of_a_lifetime,23,19,00:04:51,16,75.00%,69.57%,$0.00
/doku.php?id=bitcoindark_btcd,22,20,00:00:46,15,100.00%,72.73%,$0.00
/doku.php?id=category:devtome_writers,22,3,00:00:10,3,33.33%,4.55%,$0.00
/doku.php?id=if_you_are_afraid_to_talk_to_your_child_about_marijuana,22,2,00:01:17,0,0.00%,0.00%,$0.00
/doku.php?id=religion_and_science_have_a_friend_in_magic,22,3,00:01:13,1,0.00%,0.00%,$0.00
/doku.php?id=skeptics_and_conspiracy_theorists_unite_behind_one_tool,22,5,00:01:23,2,100.00%,9.09%,$0.00
/doku.php?id=a_couple_of_ideas_regarding_devcoin_culture_and_acceptance_into_the_creative_space,21,3,00:01:21,0,0.00%,0.00%,$0.00
/doku.php?id=create_your_own_hidden_site_using_nginx_and_tor,21,20,00:06:03,20,95.00%,95.24%,$0.00
/doku.php?id=differences_between_different_types_of_cryptocurrencies,21,18,00:02:05,16,81.25%,76.19%,$0.00
/doku.php?id=getting_started_with_the_dji_phantom_quadcopter,21,21,00:00:00,21,100.00%,100.00%,$0.00
/doku.php?id=how_i_spent_my_devcoins_in_africa,21,13,00:00:58,4,25.00%,23.81%,$0.00
/doku.php?id=how_to_fight_mental_fatigue,21,21,00:02:22,20,100.00%,95.24%,$0.00
/doku.php?id=physiological_effects_of_electricity,21,18,00:02:16,18,83.33%,85.71%,$0.00
/doku.php?id=smart_quotations,21,17,00:01:16,16,87.50%,76.19%,$0.00
/doku.php?id=the_first_step_towards_health_freedom,21,3,00:01:16,0,0.00%,0.00%,$0.00
/doku.php?id=urushiol-induced_contact_dermatitis,21,19,00:03:48,19,89.47%,90.48%,$0.00
/doku.php?id=a_flexitarian_opinion_on_the_real_fear_of_atheist_scientists_like_richard_dawkins,20,4,00:01:19,1,100.00%,5.00%,$0.00
/doku.php?id=ap_human_geography_midterm_study_guide,20,20,00:00:00,20,100.00%,100.00%,$0.00
/doku.php?id=architecture_critique_part_2,20,20,00:00:00,20,100.00%,100.00%,$0.00
/doku.php?id=cdebian,20,17,00:04:38,11,63.64%,55.00%,$0.00
/doku.php?id=colgate_total_toothpaste_linked_to_cancer,20,18,00:03:15,13,84.62%,65.00%,$0.00
/doku.php?id=final_fantasy_xiv_-_item_level_sets_bard,20,19,00:07:34,19,94.74%,95.00%,$0.00
/doku.php?id=teas_and_their_benefits,20,19,00:29:03,19,94.74%,95.00%,$0.00
/doku.php?id=affect_of_different_solidity_solutions_on_hermatocrit_percent_of_red_blood_cells,19,17,00:09:43,17,88.24%,89.47%,$0.00
/doku.php?id=if_you_have_an_intense_itch_48_hours_after_sunburn_you_must_read_this,19,19,00:00:00,19,100.00%,100.00%,$0.00
/doku.php?id=install_primecoin_ubuntu,19,17,00:02:23,17,88.24%,84.21%,$0.00
/doku.php?id=nasus_top_guide,19,18,00:00:19,17,94.12%,94.74%,$0.00
/doku.php?id=navy_cloud_computing,19,14,00:02:20,14,92.86%,73.68%,$0.00
/doku.php?id=the_best_junglers_in_league_of_legends,19,17,00:13:45,17,82.35%,84.21%,$0.00
/doku.php?id=the_role_of_education_according_to_plato,19,17,00:05:59,17,88.24%,89.47%,$0.00
/doku.php?id=using_ripple_as_a_bitcoin_wallet,19,16,00:13:37,16,81.25%,84.21%,$0.00
/doku.php?id=why_men_don_t_exercise&do=edit&rev=1392122749,19,8,00:01:52,4,0.00%,5.26%,$0.00
/doku.php?id=wiki:user:profitofthegods,19,11,00:00:54,6,33.33%,21.05%,$0.00
/doku.php?id=be_careful_when_buying_a_walk-in_bathtub,18,16,00:05:14,14,78.57%,61.11%,$0.00
/doku.php?id=chantelle,18,5,00:00:35,0,0.00%,0.00%,$0.00
/doku.php?id=climate_change_as_a_measure_of_health,18,3,00:01:10,0,0.00%,0.00%,$0.00
/doku.php?id=devcoin_division_proposal&do=edit&rev=0,18,3,00:04:58,0,0.00%,5.56%,$0.00
/doku.php?id=how_to_stop_a_toothache_and_naturally_heal_your_teeth,18,14,00:08:59,13,76.92%,72.22%,$0.00
/doku.php?id=making_soap,18,18,00:00:00,18,100.00%,100.00%,$0.00
/doku.php?id=playing_with_luajit_ffi,18,18,00:00:24,18,94.44%,94.44%,$0.00
/doku.php?id=political_ranges_can_pave_a_third_way_into_american_politics,18,3,00:01:09,0,0.00%,0.00%,$0.00
/doku.php?id=the_new_world_philosophers_chapter_3,18,16,00:04:26,11,100.00%,72.22%,$0.00
/doku.php?id=amumu_jungle_guide,17,17,00:00:00,17,100.00%,100.00%,$0.00
/doku.php?id=bancassurance_in_europe_part_1,17,13,00:01:57,11,63.64%,52.94%,$0.00
/doku.php?id=bbqcoin,17,7,00:00:19,7,71.43%,41.18%,$0.00
/doku.php?id=bitshares_x,17,16,00:16:18,15,93.33%,88.24%,$0.00
/doku.php?id=earn_devcoins_by_writing&do=login,17,6,00:00:58,0,0.00%,5.88%,$0.00
/doku.php?id=final_fantasy_xiv_-_item_level_sets_monk,17,16,00:07:48,15,93.33%,94.12%,$0.00
/doku.php?id=how_science_and_mathematics_validate_a_magical_perspective_on_life,17,3,00:01:18,0,0.00%,0.00%,$0.00
/doku.php?id=how_to_manifest_coincidences_to_illuminate_enrich_and_change_your_life,17,8,00:03:33,5,40.00%,35.29%,$0.00
/doku.php?id=is_fluoride_and_a_dentist_chair_the_only_way,17,2,00:01:19,0,0.00%,0.00%,$0.00
/doku.php?id=kelly_mcgonigal_presents_surprising_success_research,17,10,00:05:49,6,83.33%,41.18%,$0.00
/doku.php?id=literary_analysis_the_whore_s_child,17,16,00:00:32,16,87.50%,88.24%,$0.00
/doku.php?id=the_stories_of_unamuno,17,13,00:02:23,13,92.31%,76.47%,$0.00
/doku.php?id=when_she_opened_her_eyes_part_2,17,5,00:00:52,0,0.00%,17.65%,$0.00
/doku.php?id=wiki:user:pb321go,17,1,00:00:24,0,0.00%,5.88%,$0.00
/doku.php?id=chncoin,16,6,00:00:35,6,50.00%,37.50%,$0.00
/doku.php?id=communicating_with_devcon_wallet_using_php,16,14,00:07:28,14,78.57%,75.00%,$0.00
/doku.php?id=coup_in_africa,16,13,00:07:45,12,83.33%,75.00%,$0.00
/doku.php?id=coyotes,16,5,00:00:09,0,0.00%,0.00%,$0.00
/doku.php?id=fizz_middle_guide,16,14,00:01:41,14,85.71%,87.50%,$0.00
/doku.php?id=security_doors,16,15,00:00:05,15,93.33%,93.75%,$0.00
/doku.php?id=top_10_instagram_apps,16,14,00:07:33,14,85.71%,87.50%,$0.00
/doku.php?id=two_people_bill_nye_could_debate_that_would_draw_the_attention_of_the_entire_world,16,3,00:01:15,0,0.00%,0.00%,$0.00
/doku.php?id=udyr_jungle_guide,16,16,00:00:00,16,100.00%,100.00%,$0.00
/doku.php?id=when_she_opened_her_eyes,16,8,00:01:08,1,0.00%,12.50%,$0.00
/doku.php?id=before_you_apply_for_a_devtome_writer_account,15,15,00:02:46,0,0.00%,46.67%,$0.00
/doku.php?id=category:cars,15,3,00:00:11,0,0.00%,0.00%,$0.00
/doku.php?id=devtome_page_views,15,11,00:01:46,2,0.00%,40.00%,$0.00
/doku.php?id=game_review_naruto_shippuden_ultimate_ninja_storm_3_full_burst_part_1,15,13,00:00:36,12,91.67%,86.67%,$0.00
/doku.php?id=growing_sunflowers_can_be_fun,15,12,00:09:45,12,83.33%,80.00%,$0.00
/doku.php?id=non-lethal_weapons_new_police_toys_and_the_future_police_state,15,12,00:00:05,12,91.67%,80.00%,$0.00
/doku.php?id=symbolism_in_tsar,15,15,00:00:00,15,100.00%,100.00%,$0.00
/doku.php?id=teletech,15,12,00:06:58,12,83.33%,80.00%,$0.00
/doku.php?id=the_heroism_of_medea,15,13,00:09:25,13,76.92%,80.00%,$0.00
/doku.php?id=wiki:user:shakezula,15,3,00:00:12,0,0.00%,13.33%,$0.00
/doku.php?id=wiki:user:wekkel,15,5,00:00:07,1,0.00%,0.00%,$0.00
/doku.php?do=search&id=zombie&fulltext=Search,14,4,00:00:19,0,0.00%,21.43%,$0.00
/doku.php?id=bonds_yield_curves_and_price_sensitivities,14,11,00:01:36,11,81.82%,78.57%,$0.00
/doku.php?id=category:cryptocurrency,14,10,00:01:50,3,33.33%,14.29%,$0.00
/doku.php?id=cryptolocker,14,8,00:00:09,8,75.00%,57.14%,$0.00
/doku.php?id=develcuy.com_successfully_migrated_to_ophal,14,14,00:00:00,14,100.00%,100.00%,$0.00
/doku.php?id=do_not_allow_your_feeling_to_control_your_life,14,3,00:00:49,0,0.00%,7.14%,$0.00
/doku.php?id=enlightenment_attitudes_towards_women,14,13,00:11:48,13,92.31%,92.86%,$0.00
/doku.php?id=how_to_become_a_ripple_market_maker,14,13,00:07:40,13,92.31%,92.86%,$0.00
/doku.php?id=how_to_make_grocery_money_to_feed_your_entire_family_while_learning_to_speak_a_new_language,14,7,00:01:54,5,100.00%,42.86%,$0.00
/doku.php?id=italian_idioms_-_letter_b_c_d,14,12,00:00:58,12,91.67%,85.71%,$0.00
/doku.php?id=lucas_chess&rev=1393697678&mddo=print,14,12,00:03:55,0,0.00%,57.14%,$0.00
/doku.php?id=metal_dogs,14,2,00:00:14,0,0.00%,0.00%,$0.00
/doku.php?id=the_boston_marathon_bombing_was_as_phony_as_a_three_dollar_federal_reserve_note,14,7,00:03:16,6,83.33%,42.86%,$0.00
/doku.php?id=top_tryndamere_guide,14,14,00:00:00,14,100.00%,100.00%,$0.00
/doku.php?id=typical_reactions_to_alex_jones_infowars,14,13,00:00:30,10,100.00%,85.71%,$0.00
/doku.php?id=wiki:syntax,14,10,00:03:25,1,100.00%,7.14%,$0.00
/doku.php?id=a_review_of_coinad,13,13,00:00:09,12,100.00%,92.31%,$0.00
/doku.php?id=beyond_the_bean:the_many_uses_of_the_cacao_tree,13,12,00:00:25,11,90.91%,84.62%,$0.00
/doku.php?id=devtome_earnings_for_the_layperson,13,8,00:00:49,3,33.33%,15.38%,$0.00
/doku.php?id=does_the_amazing_randi_possess_and_display_extremely_powerful_psychic_abilities,13,7,00:05:48,6,66.67%,46.15%,$0.00
/doku.php?id=duolingo,13,8,00:06:56,8,37.50%,61.54%,$0.00
/doku.php?id=how_i_became_a_miner_part_1,13,5,00:01:05,3,66.67%,30.77%,$0.00
/doku.php?id=how_to_set_up_a_crypti_node_for_free_using_aws,13,11,00:00:18,7,100.00%,76.92%,$0.00
/doku.php?id=saving_money_tips_buying_a_new_car,13,4,00:01:11,0,0.00%,7.69%,$0.00
/doku.php?id=the_first_wave_of_alt_coins_are_dying,13,13,00:00:00,13,100.00%,100.00%,$0.00
/doku.php?id=the_only_exercise_you_need_to_do,13,11,00:00:20,10,90.00%,76.92%,$0.00
/doku.php?id=when_she_opened_her_eyes_part_3,13,2,00:00:30,1,0.00%,7.69%,$0.00
/doku.php?id=when_will_israel_stop_torturing_and_killing_palestinian_children,13,9,00:02:38,8,87.50%,53.85%,$0.00
/doku.php?id=why_i_do_not_need_feminism,13,13,00:00:00,13,100.00%,100.00%,$0.00
/doku.php?id=wiki:user:demolitionman234,13,6,00:00:16,0,0.00%,0.00%,$0.00
/doku.php?id=ac_or_dc_that_was_the_question,12,9,00:00:15,9,77.78%,66.67%,$0.00
/doku.php?id=bee_stings,12,12,00:00:00,12,100.00%,100.00%,$0.00
/doku.php?id=changes_after_giving_birth_feelings_lifestyle_roles_relationships,12,11,00:05:57,11,90.91%,91.67%,$0.00
/doku.php?id=christian_themes_in_beowulf,12,10,00:01:29,10,80.00%,83.33%,$0.00
/doku.php?id=devcoin_faq,12,9,00:01:20,3,66.67%,41.67%,$0.00
/doku.php?id=digitalis_open_transactions_server,12,9,00:02:20,9,77.78%,75.00%,$0.00
/doku.php?id=drug_abuse_in_adolescents,12,5,00:01:08,1,0.00%,16.67%,$0.00
/doku.php?id=how_to_recycle_butane_after_extractions,12,11,00:28:01,11,90.91%,91.67%,$0.00
/doku.php?id=officer_down,12,4,00:00:13,0,0.00%,0.00%,$0.00
/doku.php?id=talk:why_men_don_t_exercise,12,8,00:00:04,1,0.00%,0.00%,$0.00
/doku.php?id=the_peak_nitric_oxide_test,12,12,00:00:00,12,100.00%,100.00%,$0.00
/doku.php?id=walkingupright,12,10,00:04:27,10,80.00%,83.33%,$0.00
/doku.php?id=wiki:user:mortalsun9,12,6,00:00:53,0,0.00%,8.33%,$0.00
/doku.php?id=wiki:user:pietshaq,12,7,00:02:22,3,0.00%,25.00%,$0.00
/doku.php?id=wiki:user:silentwriter&do=backlink,12,2,00:00:07,0,0.00%,0.00%,$0.00
/doku.php?do=search&id=seeking+sage&fulltext=Search,11,3,00:00:14,0,0.00%,9.09%,$0.00
/doku.php?id=a_path_of_silence,11,2,00:00:12,0,0.00%,0.00%,$0.00
/doku.php?id=an_audience_of_clouds,11,4,00:00:42,0,0.00%,9.09%,$0.00
/doku.php?id=are_there_viable_alternatives_to_ebay,11,10,00:04:16,10,90.00%,90.91%,$0.00
/doku.php?id=ashe_ad_carry_guide,11,10,00:00:47,10,90.00%,90.91%,$0.00
/doku.php?id=building_a_devcoin_reddit_tipbot,11,7,00:11:34,6,66.67%,63.64%,$0.00
/doku.php?id=building_a_sexual_relationship_in_a_christian_marriage,11,6,00:01:20,0,0.00%,9.09%,$0.00
/doku.php?id=chemistry_solutions_and_solubility,11,11,00:00:00,11,100.00%,100.00%,$0.00
/doku.php?id=compare_contrast_christianity_vs_buddhism,11,9,00:00:59,9,77.78%,81.82%,$0.00
/doku.php?id=cpu_mining,11,11,00:00:00,10,90.00%,90.91%,$0.00
/doku.php?id=devtome_advanced_syntax&s[]=syntax,11,11,00:00:00,11,100.00%,100.00%,$0.00
/doku.php?id=devtome_analytics,11,10,00:03:09,6,0.00%,18.18%,$0.00
/doku.php?id=faucets,11,9,00:02:22,9,77.78%,81.82%,$0.00
/doku.php?id=final_fantasy_xiv_races_elezen,11,9,00:02:08,4,75.00%,72.73%,$0.00
/doku.php?id=galactic_milieu,11,11,00:00:22,8,87.50%,72.73%,$0.00
/doku.php?id=get_ready_for_surprise_raids_on_your_home_by_swat_style_code_enforcement_officers,11,7,00:00:28,6,83.33%,54.55%,$0.00
/doku.php?id=gragas_middle_guide,11,2,00:00:27,1,100.00%,9.09%,$0.00
/doku.php?id=introduction_to_world_of_tanks,11,11,00:00:00,11,100.00%,100.00%,$0.00
/doku.php?id=maidsafe_safecoin_and_the_safe_network,11,10,00:01:05,1,100.00%,81.82%,$0.00
/doku.php?id=partition_walls,11,10,00:00:06,10,90.00%,90.91%,$0.00
/doku.php?id=scrypt_altcoin_cloning_guide&rev=1391697500,11,8,00:01:09,8,75.00%,72.73%,$0.00
/doku.php?id=shirt_in_the_hands_of_a_psychic,11,3,00:00:17,0,0.00%,0.00%,$0.00
/doku.php?id=solow_model-_growth_potential_for_china_and_us,11,10,00:13:41,10,80.00%,81.82%,$0.00
/doku.php?id=tetris,11,8,00:01:49,8,75.00%,72.73%,$0.00
/doku.php?id=the_cold_equations:start,11,8,00:08:08,8,87.50%,72.73%,$0.00
/doku.php?id=the_death_of_litecoin_will_rejuvenate_other_alts,11,11,00:00:00,11,100.00%,100.00%,$0.00
/doku.php?id=the_effects_of_calculators_on_modern_society,11,10,00:07:16,10,90.00%,90.91%,$0.00
/doku.php?id=they_can_because_they_think_they_can,11,6,00:00:14,0,0.00%,27.27%,$0.00
/doku.php?id=top_aatrox_guide,11,7,00:02:46,7,85.71%,63.64%,$0.00
/doku.php?id=united_states_on_fast_track_to_third_world_nightmare,11,9,00:00:37,7,100.00%,72.73%,$0.00
/doku.php?id=why_do_so_many_people_believe_in_conspiracy_theories,11,4,00:01:41,3,66.67%,27.27%,$0.00
/doku.php?id=wiki:user:gorgorom,11,4,00:00:07,3,0.00%,9.09%,$0.00
/doku.php?id=wiki:user:penguinwriter,11,3,00:00:12,1,0.00%,0.00%,$0.00
/doku.php?id=wiki:user:vehementchrome,11,3,00:00:12,0,0.00%,0.00%,$0.00
/doku.php?id=abiogenic_theory_of_petroleum,10,10,00:00:00,10,100.00%,100.00%,$0.00
/doku.php?id=bitcoin_point_of_sale_systems,10,6,00:04:59,3,66.67%,40.00%,$0.00
/doku.php?id=category:ripple,10,7,00:00:15,2,0.00%,40.00%,$0.00
/doku.php?id=circuit_design2,10,8,00:00:16,8,75.00%,80.00%,$0.00
/doku.php?id=cloak_coin_posa_lets_users_earn_anonymizing_fees,10,10,00:00:00,9,100.00%,100.00%,$0.00
/doku.php?id=communication_difficulties_in_marriage,10,3,00:00:22,0,0.00%,20.00%,$0.00
/doku.php?id=dante_sonata_by_franz_liszt,10,10,00:00:08,10,90.00%,90.00%,$0.00
/doku.php?id=devcoin_accomplishments,10,9,00:09:08,8,62.50%,50.00%,$0.00
/doku.php?id=devcoin_bounty_now&do=revisions,10,4,00:04:29,1,0.00%,30.00%,$0.00
/doku.php?id=devcoin_seeds,10,8,00:04:43,7,57.14%,60.00%,$0.00
/doku.php?id=eczema,10,8,00:06:12,8,75.00%,80.00%,$0.00
/doku.php?id=final_fantasy_xiv_races_lalafell,10,7,00:01:26,6,66.67%,50.00%,$0.00
/doku.php?id=finshaggy,10,6,00:00:23,6,66.67%,50.00%,$0.00
/doku.php?id=four_solid_reasons_you_should_be_playing_backgammon,10,7,00:01:57,6,83.33%,50.00%,$0.00
/doku.php?id=grasslands,10,9,00:08:14,9,88.89%,90.00%,$0.00
/doku.php?id=how_to_travel_with_your_new_baby,10,4,00:00:09,2,100.00%,30.00%,$0.00
/doku.php?id=important_points_about_maneuvers_reversing_parking,10,9,00:01:30,9,88.89%,90.00%,$0.00
/doku.php?id=intro_to_engineering_final_review,10,8,00:02:01,8,62.50%,70.00%,$0.00
/doku.php?id=ixcoin,10,8,00:00:30,7,85.71%,70.00%,$0.00
/doku.php?id=key_themes_in_all_my_sons,10,9,00:02:03,9,88.89%,90.00%,$0.00
/doku.php?id=mjwd_entry2,10,7,00:08:20,6,66.67%,60.00%,$0.00
/doku.php?id=niche_ideas:6._recipes,10,9,00:15:08,9,88.89%,90.00%,$0.00
/doku.php?id=pretend_terminal_illness,10,10,00:00:00,10,100.00%,100.00%,$0.00
/doku.php?id=setting_up_a_minecraft_server,10,10,00:01:01,10,90.00%,90.00%,$0.00
/doku.php?id=strengthening_a_couple_s_life_through_communication,10,4,00:01:08,1,100.00%,20.00%,$0.00
/doku.php?id=the_history_of_money_-_from_cattle_to_bitcoins,10,8,00:01:22,8,75.00%,80.00%,$0.00
/doku.php?id=the_invisible_man_analysis,10,8,00:01:26,7,71.43%,60.00%,$0.00
/doku.php?id=the_silence_of_rain_the_music_of_acceleration,10,2,00:00:42,0,0.00%,0.00%,$0.00
/doku.php?id=the_value_of_devcoin,10,9,00:04:10,7,28.57%,30.00%,$0.00
/doku.php?id=venus_the_wide_wandering_one,10,10,00:00:00,10,100.00%,100.00%,$0.00
/doku.php?id=when_she_opened_her_eyes_part_3&do=edit&rev=0,10,1,00:01:03,0,0.00%,0.00%,$0.00
/doku.php?id=wiki:user:flam,10,4,00:00:17,0,0.00%,0.00%,$0.00
/doku.php?id=will_power,10,3,00:00:33,0,0.00%,20.00%,$0.00
/doku.php?id=a_city_dies_d_ydii,9,1,00:00:11,0,0.00%,0.00%,$0.00
/doku.php?id=a_kmail_to_outlook_2003_migration_and_conversion_process,9,8,00:26:36,8,87.50%,88.89%,$0.00
/doku.php?id=alzheimer_s_disease,9,8,00:04:55,8,87.50%,88.89%,$0.00
/doku.php?id=become_a_professional_dog_trainer,9,3,00:00:57,0,0.00%,22.22%,$0.00
/doku.php?id=beyond_2014_classic_computing_-_microsoft_windows_nt_server_4,9,7,00:01:23,7,85.71%,77.78%,$0.00
/doku.php?id=broad_vs._strict_interpretation_of_the_united_states_constitution,9,8,00:00:46,8,87.50%,88.89%,$0.00
/doku.php?id=contact_by_finshaggy,9,2,00:00:15,0,0.00%,0.00%,$0.00
/doku.php?id=devcoin_bounty_now&do=login,9,6,00:00:10,1,0.00%,0.00%,$0.00
/doku.php?id=devtome_categorizing_your_articles,9,5,00:00:38,1,0.00%,11.11%,$0.00
/doku.php?id=ema-volatility_trading_algorithm_for_bots,9,9,00:00:28,7,100.00%,77.78%,$0.00
/doku.php?id=facing_your_fear_of_life,9,4,00:01:34,0,0.00%,0.00%,$0.00
/doku.php?id=forex_news_trading,9,6,00:00:46,6,83.33%,66.67%,$0.00
/doku.php?id=galaxies_online,9,7,00:08:05,5,80.00%,66.67%,$0.00
/doku.php?id=game_guide_-_faster_than_light_-_ships_part_1,9,4,00:00:35,0,0.00%,11.11%,$0.00
/doku.php?id=gluten_free_flour,9,7,00:04:39,7,85.71%,77.78%,$0.00
/doku.php?id=how_to_produce_an_audio_book,9,8,00:27:35,8,87.50%,88.89%,$0.00
/doku.php?id=internet_myths_vs_the_reality_of_tv_network_news_and_snopes_and_wikipedia,9,7,00:02:17,4,75.00%,44.44%,$0.00
/doku.php?id=learning_irish_lesson3,9,7,00:01:13,5,80.00%,66.67%,$0.00
/doku.php?id=money_saving_tips_for_buying_a_new_or_used_car,9,6,00:00:11,0,0.00%,33.33%,$0.00
/doku.php?id=money_saving_tips_for_buying_a_new_or_used_car&do=edit&rev=0,9,1,00:00:48,0,0.00%,0.00%,$0.00
/doku.php?id=moving_average_technical_analysis,9,9,00:02:17,9,88.89%,88.89%,$0.00
/doku.php?id=never_be_sick_again_book_review,9,8,00:00:23,6,100.00%,66.67%,$0.00
/doku.php?id=nxt_asset_exchange,9,5,00:01:06,3,66.67%,33.33%,$0.00
/doku.php?id=programming_microsoft_word_-_10_-_working_with_a_collection_part_1,9,2,00:00:16,0,0.00%,0.00%,$0.00
/doku.php?id=resting_to_minimize_fatigue,9,3,00:00:43,0,0.00%,11.11%,$0.00
/doku.php?id=ripple_vs_paypal,9,9,00:06:19,8,100.00%,88.89%,$0.00
/doku.php?id=spelunky_guide_-_character_list,9,8,00:00:09,7,85.71%,88.89%,$0.00
/doku.php?id=syscoin,9,8,00:00:40,8,87.50%,88.89%,$0.00
/doku.php?id=the_basics_of_team_fortress_2_trading,9,9,00:00:00,9,100.00%,100.00%,$0.00
/doku.php?id=the_christian_perspective_of_sex,9,4,00:00:32,0,0.00%,11.11%,$0.00
/doku.php?id=the_history_of_tattoos,9,7,00:01:43,7,85.71%,77.78%,$0.00
/doku.php?id=thoughts_for_the_day_romantic_attachment_types,9,9,00:00:00,9,100.00%,100.00%,$0.00
/doku.php?id=unity_in_marriage,9,3,00:00:37,1,0.00%,11.11%,$0.00
/doku.php?id=why_men_don_t_exercise&rev=1392122749&mddo=cite,9,7,00:04:41,1,0.00%,22.22%,$0.00
/doku.php?id=why_sesame_place_is_fun,9,3,00:00:29,0,0.00%,0.00%,$0.00
/doku.php?id=why_the_house_always_wins_and_everyone_loses_when_you_play_low_limit_poker,9,7,00:08:57,7,71.43%,77.78%,$0.00
/doku.php?id=wiki:user:fuzzybear,9,7,00:00:15,2,100.00%,22.22%,$0.00
/doku.php?id=wiki:user:papacrusher,9,3,00:00:05,0,0.00%,0.00%,$0.00
/doku.php?id=a_post-structuralist_interpretation_of_the_image,8,7,00:13:58,7,85.71%,87.50%,$0.00
/doku.php?id=achieve_happiness_and_joy,8,3,00:00:33,0,0.00%,0.00%,$0.00
/doku.php?id=analysis_of_mozarts_magic_flute,8,8,00:00:00,8,100.00%,100.00%,$0.00
/doku.php?id=annie_middle_guide,8,6,00:01:28,5,60.00%,62.50%,$0.00
/doku.php?id=attachment_styles_a_personal_discovery,8,6,00:00:10,4,100.00%,50.00%,$0.00
/doku.php?id=best_kettlebell_ab_exercises_for_a_strong_six_pack_and_core,8,7,00:03:03,7,85.71%,87.50%,$0.00
/doku.php?id=bter_exchange_review,8,7,00:26:11,7,85.71%,87.50%,$0.00
/doku.php?id=caitlyn_ad_carry_guide,8,6,00:03:05,5,80.00%,62.50%,$0.00
/doku.php?id=category:devtome,8,7,00:02:41,0,0.00%,0.00%,$0.00
/doku.php?id=cdebianchangelog,8,8,00:04:46,7,100.00%,87.50%,$0.00
/doku.php?id=chemistry_quantum_mechanics_and_atomic_structure,8,6,00:00:13,6,83.33%,75.00%,$0.00
/doku.php?id=controlling_our_emotions_and_feelings,8,1,00:00:07,0,0.00%,12.50%,$0.00
/doku.php?id=earn_devcoins_by_marketing,8,8,00:00:17,6,66.67%,50.00%,$0.00
/doku.php?id=earth_sheltered_homes,8,6,00:01:05,6,83.33%,75.00%,$0.00
/doku.php?id=edible_seeds,8,7,00:03:44,7,85.71%,87.50%,$0.00
/doku.php?id=education_of_the_sexual_instinct,8,3,00:00:42,0,0.00%,12.50%,$0.00
/doku.php?id=finding_courage,8,1,00:00:03,0,0.00%,12.50%,$0.00
/doku.php?id=free_spirit_as_a_euphemism_-_one_man_s_perspective_may_2014,8,8,00:00:02,7,100.00%,87.50%,$0.00
/doku.php?id=free_sync_and_backup_applications_you_probably_haven_t_heard_of&do=edit&rev=0,8,1,00:00:39,0,0.00%,0.00%,$0.00
/doku.php?id=game_guide_-_faster_than_light_-_ships_part_3,8,4,00:00:08,0,0.00%,0.00%,$0.00
/doku.php?id=grilling_beef_ribs,8,4,00:00:18,0,0.00%,0.00%,$0.00
/doku.php?id=groupcoin,8,6,00:01:41,5,60.00%,62.50%,$0.00
/doku.php?id=hollow_bolts_for_geocaching,8,8,00:00:00,8,100.00%,100.00%,$0.00
/doku.php?id=how_to_grow_datura_inoxia,8,8,00:12:57,8,87.50%,87.50%,$0.00
/doku.php?id=how_to_use_orgone_energy_to_make_street_lights_turn_off_while_protecting_your_health_by_decreasing_the_effects_of_electronic_smog,8,6,00:02:32,5,80.00%,62.50%,$0.00
/doku.php?id=is_it_really_a_travesty_for_able-bodied_actors_to_play_roles_of_disabled_characters,8,6,00:00:37,5,80.00%,62.50%,$0.00
/doku.php?id=it_s_increasingly_looking_like_the_snowden_drama_might_be_a_limited_hangout_psyop,8,7,00:02:03,6,66.67%,50.00%,$0.00
/doku.php?id=memrise,8,7,00:03:49,5,80.00%,62.50%,$0.00
/doku.php?id=moles_and_atoms,8,7,00:01:08,7,85.71%,87.50%,$0.00
/doku.php?id=overpopulation,8,6,00:07:04,6,83.33%,62.50%,$0.00
/doku.php?id=primedice.com_bitcoin_dice_platform_generates_over_15_million_usd_of_turnover_in_first_three_months_of_operation,8,8,00:00:26,7,85.71%,75.00%,$0.00
/doku.php?id=psychedelic_drug,8,3,00:02:45,3,33.33%,37.50%,$0.00
/doku.php?id=recuperation_after_a_cesarean_delivery,8,7,00:00:20,7,85.71%,87.50%,$0.00
/doku.php?id=sc2_secure_cloud_storage_coin,8,7,00:00:49,7,71.43%,75.00%,$0.00
/doku.php?id=script_altcoin_cloning_guide&rev=1375409063,8,1,00:00:37,1,0.00%,0.00%,$0.00
/doku.php?id=should_needle_exchanges_be_publicly_funded&do=edit&rev=0,8,1,00:00:15,0,0.00%,0.00%,$0.00
/doku.php?id=start&do=media,8,7,00:00:31,1,0.00%,25.00%,$0.00
/doku.php?id=sustainable_living,8,8,00:00:13,2,100.00%,50.00%,$0.00
/doku.php?id=the_difficulties_of_raising_a_christian_family,8,4,00:01:04,0,0.00%,0.00%,$0.00
/doku.php?id=the_healing_house,8,3,00:00:35,0,0.00%,0.00%,$0.00
/doku.php?id=the_husband_s_role_in_a_christian_marriage,8,2,00:00:19,0,0.00%,0.00%,$0.00
/doku.php?id=the_japan_premium,8,7,00:01:51,7,85.71%,87.50%,$0.00
/doku.php?id=the_utter_inappropriateness_in_undue_emotional_or_time_investment_in_spectator_sporting_events,8,2,00:02:08,1,0.00%,0.00%,$0.00
/doku.php?id=thinking_efficiently,8,3,00:01:02,0,0.00%,12.50%,$0.00
/doku.php?id=top_10_cryptocurrency_blogs_and_forums_to_read,8,7,00:00:25,6,100.00%,75.00%,$0.00
/doku.php?id=wiki:user:athanasios_motok,8,2,00:00:10,0,0.00%,0.00%,$0.00
/doku.php?id=wiki:user:metal_dogs&do=draft&rev=1409264703,8,1,00:02:13,0,0.00%,0.00%,$0.00
/doku.php?id=wiki:user:professor_james_moriarty,8,1,00:00:07,1,0.00%,12.50%,$0.00
/doku.php?id=wiki:user:whoisthelorax,8,3,00:00:09,0,0.00%,25.00%,$0.00
/doku.php?id=wow_any_blogger_calling_lorde_a_racist_is_just_plain_whacked,8,7,00:00:30,6,100.00%,75.00%,$0.00
/doku.php?id=adding_captcha_to_mvc_csharp_project,7,7,00:00:00,7,100.00%,100.00%,$0.00
/doku.php?id=bermuda_triangle,7,7,00:00:00,7,100.00%,100.00%,$0.00
/doku.php?id=brian_schweitzer_running_for_president_is_a_possibility,7,6,00:00:27,3,100.00%,42.86%,$0.00
/doku.php?id=category:e-currency,7,4,00:00:15,0,0.00%,14.29%,$0.00
/doku.php?id=category:flash_fiction,7,4,00:00:18,1,0.00%,0.00%,$0.00
/doku.php?id=category:novels&do=edit&rev=1398827384,7,1,00:00:31,0,0.00%,0.00%,$0.00
/doku.php?id=category:strategy_game,7,3,00:00:04,0,0.00%,14.29%,$0.00
/doku.php?id=checklist_of_criteria_to_consider_when_investing_in_alt-coins,7,4,00:01:07,1,100.00%,28.57%,$0.00
/doku.php?id=compiling_devcoin,7,7,00:02:26,5,100.00%,85.71%,$0.00
/doku.php?id=corki_ad_carry_guide,7,4,00:02:50,4,50.00%,57.14%,$0.00
/doku.php?id=correct_your_eyesight_with_pinhole_glasses,7,6,00:02:20,5,100.00%,71.43%,$0.00
/doku.php?id=counterparty,7,5,00:00:46,5,80.00%,71.43%,$0.00
/doku.php?id=creating_a_high_quality_support_staff,7,1,00:00:11,0,0.00%,0.00%,$0.00
/doku.php?id=decriminalizing_drugs_does_way_too_many_good_things_to_fit_into_an_article_title,7,6,00:00:36,4,100.00%,71.43%,$0.00
/doku.php?id=do_pro_choicers_believe_that_abortion_is_okay_any_minute_before_childbirth,7,6,00:00:33,5,100.00%,71.43%,$0.00
/doku.php?id=dr.mundo_intro,7,2,00:00:44,2,0.00%,0.00%,$0.00
/doku.php?id=dreams_provide_courage,7,2,00:00:56,0,0.00%,14.29%,$0.00
/doku.php?id=enhancing_the_sexual_relationship_in_a_christian_marriage,7,2,00:00:37,0,0.00%,0.00%,$0.00
/doku.php?id=especially_for_nsfdgew_devtome_writers&do=edit&rev=0,7,1,00:01:56,0,0.00%,0.00%,$0.00
/doku.php?id=final_fantasy_xiv_-_item_level_sets_summoner,7,7,00:00:00,7,100.00%,100.00%,$0.00
/doku.php?id=final_fantasy_xiv_races_hyur,7,5,00:01:03,3,66.67%,57.14%,$0.00
/doku.php?id=finshaggy_s_short_stories,7,3,00:00:20,0,0.00%,14.29%,$0.00
/doku.php?id=global_marijuana_research_project,7,7,00:00:00,7,100.00%,100.00%,$0.00
/doku.php?id=godzilla_2014_movie_review,7,7,00:00:00,7,100.00%,100.00%,$0.00
/doku.php?id=gragas_middle_guide&do=edit&rev=1393507170,7,1,00:00:31,0,0.00%,0.00%,$0.00
/doku.php?id=hecarim_guide_pre_s4,7,6,00:00:06,6,83.33%,85.71%,$0.00
/doku.php?id=how_i_became_a_miner_part_2,7,5,00:04:04,2,50.00%,28.57%,$0.00
/doku.php?id=how_to_handle_your_fear_of_people,7,2,00:00:05,0,0.00%,14.29%,$0.00
/doku.php?id=irish_republican_army,7,7,00:00:00,7,100.00%,100.00%,$0.00
/doku.php?id=is_urbanisation_a_sign_of_development_success_or_failure,7,7,00:00:00,7,100.00%,100.00%,$0.00
/doku.php?id=it_s_hard_to_admit_how_wrong_i_was_about_obama,7,7,00:04:20,5,100.00%,85.71%,$0.00
/doku.php?id=list_of_british_prime_ministers_who_are_related_to_each_other,7,6,00:00:47,6,83.33%,85.71%,$0.00
/doku.php?id=malicious_website_or_satire_at_its_finest,7,5,00:02:25,3,66.67%,57.14%,$0.00
/doku.php?id=niche_ideas:10._travel_guides,7,4,00:02:55,4,75.00%,57.14%,$0.00
/doku.php?id=nike_freerun_4.0_review,7,2,00:00:08,0,0.00%,14.29%,$0.00
/doku.php?id=perfume:a_film_that_you_can_smell_it,7,6,00:00:42,6,83.33%,85.71%,$0.00
/doku.php?id=ppcoin,7,4,00:01:16,4,50.00%,57.14%,$0.00
/doku.php?id=programming_microsoft_word_-_06_-_creating_word_docs_the_right_way,7,6,00:02:41,2,50.00%,28.57%,$0.00
/doku.php?id=programming_microsoft_word_-_09_-_working_with_a_database,7,4,00:00:05,1,0.00%,14.29%,$0.00
/doku.php?id=robin_williams_was_a_comedy_legend,7,6,00:00:38,0,0.00%,0.00%,$0.00
/doku.php?id=roster_of_the_7th_cavalry_in_1876,7,7,00:00:00,7,100.00%,100.00%,$0.00
/doku.php?id=school_safety_investigator_ex_cop_threatened_with_arrest_for_seeking_answers_to_sandy_hook_mysteries,7,6,00:02:23,5,100.00%,71.43%,$0.00
/doku.php?id=stained_glass,7,6,00:09:07,5,80.00%,71.43%,$0.00
/doku.php?id=start&do=index,7,6,00:00:27,0,0.00%,14.29%,$0.00
/doku.php?id=start&idx=investing_with_crypto_coins,7,2,00:01:11,1,100.00%,28.57%,$0.00
/doku.php?id=the_existence_of_near_death_experiences_makes_listening_to_alex_jones_not_so_scary,7,6,00:02:47,4,100.00%,57.14%,$0.00
/doku.php?id=the_health_savings_account_hype,7,3,00:02:15,0,0.00%,0.00%,$0.00
/doku.php?id=the_most_effective_use_of_the_will,7,3,00:00:12,0,0.00%,28.57%,$0.00
/doku.php?id=the_single_mother,7,1,00:00:09,0,0.00%,0.00%,$0.00
/doku.php?id=use_emulators_people,7,7,00:11:37,6,83.33%,85.71%,$0.00
/doku.php?id=wiki:user:elenda,7,2,00:00:11,0,0.00%,14.29%,$0.00
/doku.php?id=wiki:user:tayfun73&do=backlink,7,1,00:00:04,0,0.00%,0.00%,$0.00
/doku.php?id=wiki:user:wiser,7,3,00:01:05,1,100.00%,14.29%,$0.00
/doku.php?id=xapo_-_bitcoin_web_wallet_review,7,7,00:00:00,7,100.00%,100.00%,$0.00
/doku.php?id=xerath_middle_guide&do=edit&rev=1391639221,7,1,00:00:13,0,0.00%,0.00%,$0.00
/translate_c?depth=1&hl=pt-PT&prev=/search?q=make+build+altcoin&client=safari&rls=en&rurl=translate.google.pt&sl=en&u=http://devtome.com/doku.php?id=scrypt_altcoin_cloning_guide&usg=ALkJrhjqNmPKf8lFI-eiDyjYVn2h1_zeLw,7,2,00:03:02,2,50.00%,28.57%,$0.00
/doku.php?do=search&id=coin&fulltext=Search,6,1,00:01:11,0,0.00%,16.67%,$0.00
/doku.php?do=search&id=wukong&fulltext=Search,6,1,00:00:15,1,0.00%,0.00%,$0.00
/doku.php?id=a_mind_boggling_five_dollar_online_psychic_reading,6,4,00:01:07,3,100.00%,50.00%,$0.00
/doku.php?id=baby_its_cold_outside,6,2,00:00:37,0,0.00%,0.00%,$0.00
/doku.php?id=become_a_professional_dog_trainer&do=edit&rev=0,6,1,00:06:26,0,0.00%,0.00%,$0.00
/doku.php?id=bill_gates,6,5,00:01:46,4,75.00%,83.33%,$0.00
/doku.php?id=bingo_algorithm,6,5,00:00:20,5,80.00%,83.33%,$0.00
/doku.php?id=book_one_-_the_forging_of_a_blade,6,2,00:00:15,0,0.00%,0.00%,$0.00
/doku.php?id=btcjam,6,6,00:00:00,6,100.00%,100.00%,$0.00
/doku.php?id=category:book_review,6,5,00:00:05,0,0.00%,16.67%,$0.00
/doku.php?id=category:fiction_reviews,6,1,00:00:10,0,0.00%,0.00%,$0.00
/doku.php?id=category:literature,6,2,00:00:14,0,0.00%,16.67%,$0.00
/doku.php?id=category:shopping,6,4,00:00:19,3,66.67%,33.33%,$0.00
/doku.php?id=category:trading_systems,6,5,00:00:10,1,100.00%,50.00%,$0.00
/doku.php?id=characteristics_of_a_newborn_baby,6,4,00:00:09,4,75.00%,66.67%,$0.00
/doku.php?id=competitive_eating,6,6,00:00:00,6,100.00%,100.00%,$0.00
/doku.php?id=crucial_health_tip:the_importance_of_oxygenating_your_cells,6,5,00:00:39,3,100.00%,50.00%,$0.00
/doku.php?id=cryptocurrency_and_remittances,6,6,00:00:00,6,100.00%,100.00%,$0.00
/doku.php?id=cryptocurrency_dacs_and_the_future_jobless_economy,6,5,00:01:27,1,100.00%,33.33%,$0.00
/doku.php?id=devcoin_human_resources,6,5,00:01:27,1,100.00%,66.67%,$0.00
/doku.php?id=devcoin_share_list,6,4,00:01:17,1,0.00%,33.33%,$0.00
/doku.php?id=dr.mundo_support_guide,6,2,00:00:17,0,0.00%,0.00%,$0.00
/doku.php?id=dulce_de_leche,6,5,00:01:13,5,80.00%,83.33%,$0.00
/doku.php?id=earn_devcoins_by_developing,6,6,00:00:49,3,100.00%,66.67%,$0.00
/doku.php?id=enst_201,6,3,00:02:03,3,66.67%,50.00%,$0.00
/doku.php?id=final_fantasy_xiv_-_item_level_sets_warrior,6,5,00:03:17,4,75.00%,66.67%,$0.00
/doku.php?id=final_fantasy_xiv_advanced_tactics_-_warrior_mechanics_and_analysis_for_advanced_players,6,6,00:00:04,4,75.00%,66.67%,$0.00
/doku.php?id=futures_contracts_2,6,6,00:00:00,6,100.00%,100.00%,$0.00
/doku.php?id=game_guide_-_faster_than_light_-_ships_part_2,6,2,00:02:05,0,0.00%,0.00%,$0.00
/doku.php?id=garrys_mod_review,6,6,00:00:33,6,66.67%,66.67%,$0.00
/doku.php?id=getting_cpuminer_running_on_unix_quickly,6,6,00:00:00,6,100.00%,100.00%,$0.00
/doku.php?id=guide_to_your_chakras,6,5,00:05:42,5,80.00%,83.33%,$0.00
/doku.php?id=gw2_-_new_patch_for_new_players,6,1,00:00:07,0,0.00%,0.00%,$0.00
/doku.php?id=haasonline_bot_review,6,3,00:03:08,3,33.33%,50.00%,$0.00
/doku.php?id=here_s_why_this_longtime_liberal_totally_flipped_on_gun_control,6,4,00:02:20,3,100.00%,50.00%,$0.00
/doku.php?id=how_to_upgrade_your_led_dynamo_flashlight,6,4,00:01:23,4,75.00%,66.67%,$0.00
/doku.php?id=introduction_to_cryptocurrencies_vs_fiat_money_plus_a_warning_about_being_stupid,6,5,00:00:31,4,100.00%,66.67%,$0.00
/doku.php?id=is_cliven_bundy_really_a_racist_deadbeat_domestic_terrorist,6,4,00:00:56,3,100.00%,50.00%,$0.00
/doku.php?id=it_s_always_interesting_when_former_atheists_change_their_minds,6,5,00:01:35,4,100.00%,66.67%,$0.00
/doku.php?id=kiki_s_delivery_service_majo_no_takkyuubin,6,5,00:00:10,5,80.00%,83.33%,$0.00
/doku.php?id=kissing_customs_and_fun_facts,6,6,00:00:00,6,100.00%,100.00%,$0.00
/doku.php?id=lady_black,6,5,00:00:27,0,0.00%,16.67%,$0.00
/doku.php?id=legitimate_expectation,6,6,00:00:00,6,100.00%,100.00%,$0.00
/doku.php?id=libreoffice,6,6,00:00:00,6,100.00%,100.00%,$0.00
/doku.php?id=making_money_from_writing_the_right_way,6,4,00:01:13,0,0.00%,0.00%,$0.00
/doku.php?id=making_money_from_writing_the_right_way&do=edit&rev=0,6,1,00:00:26,0,0.00%,0.00%,$0.00
/doku.php?id=medical_doctors_eye_doctors_and_dentists_are_some_of_the_biggest_pyramid_scammers_ever,6,2,00:00:48,1,0.00%,16.67%,$0.00
/doku.php?id=miss_fortune_ad_carry_guide,6,4,00:01:48,4,50.00%,66.67%,$0.00
/doku.php?id=my_father_s_penis&do=edit&rev=1409088272,6,1,00:00:51,0,0.00%,0.00%,$0.00
/doku.php?id=niche_ideas:9._weddings,6,5,00:02:01,5,80.00%,66.67%,$0.00
/doku.php?id=nxt_asset_exchange&do=revisions,6,2,00:00:13,0,0.00%,16.67%,$0.00
/doku.php?id=palladium,6,5,00:09:14,5,80.00%,83.33%,$0.00
/doku.php?id=paul_walker,6,6,00:00:00,6,100.00%,100.00%,$0.00
/doku.php?id=pigs_spotted_flying_as_rachel_maddow_questions_aspects_of_boston_bombing,6,2,00:00:47,1,100.00%,16.67%,$0.00
/doku.php?id=population_growth_and_transport_systems,6,5,00:06:07,5,80.00%,83.33%,$0.00
/doku.php?id=programming_microsoft_word_-_05_-_from_form_to_word_document_ii,6,3,00:02:35,1,0.00%,0.00%,$0.00
/doku.php?id=programming_microsoft_word_-_10_-_working_with_a_collection_part_2,6,2,00:00:43,0,0.00%,0.00%,$0.00
/doku.php?id=quotes_of_bless_the_beasts_and_the_children,6,4,00:10:16,4,50.00%,66.67%,$0.00
/doku.php?id=red_coral_-_the_gold_of_mediterranean_sea,6,5,00:00:50,5,80.00%,83.33%,$0.00
/doku.php?id=romanslavetrading,6,4,00:00:09,4,75.00%,66.67%,$0.00
/doku.php?id=steve_jobs_rolls_in_his_grave-of_apple_and_bitcoin,6,6,00:00:00,6,100.00%,100.00%,$0.00
/doku.php?id=talk:scrypt_altcoin_cloning_guide,6,5,00:00:05,1,0.00%,0.00%,$0.00
/doku.php?id=talk:why_men_don_t_exercise&do=edit&rev=0,6,4,00:00:05,0,0.00%,0.00%,$0.00
/doku.php?id=talk:wiki:user:darknessfell,6,3,00:00:45,0,0.00%,16.67%,$0.00
/doku.php?id=terracoin,6,2,00:00:10,2,50.00%,33.33%,$0.00
/doku.php?id=the_working_mother,6,1,00:00:07,0,0.00%,0.00%,$0.00
/doku.php?id=there_are_signs_everywhere,6,1,00:01:51,0,0.00%,0.00%,$0.00
/doku.php?id=understanding_lawn_mowers,6,4,00:00:17,4,50.00%,66.67%,$0.00
/doku.php?id=what_is_a_scholar-warrior,6,6,00:00:00,6,100.00%,100.00%,$0.00
/doku.php?id=why_do_so_many_otherwise_intelligent_people_shut_down_their_brains_when_it_comes_to_911,6,5,00:03:12,2,100.00%,33.33%,$0.00
/doku.php?id=why_men_don_t_exercise&do=revisions,6,5,00:01:07,0,0.00%,0.00%,$0.00
/doku.php?id=wiki:user:bigg01,6,3,00:00:12,1,0.00%,0.00%,$0.00
/doku.php?id=wiki:user:Dglenn,6,4,00:03:25,3,0.00%,16.67%,$0.00
/doku.php?id=wiki:user:sifuphil,6,4,00:00:24,3,66.67%,33.33%,$0.00
/doku.php?id=wiki:user:silentwriter,6,2,00:00:24,0,0.00%,16.67%,$0.00
/doku.php?id=wiki:user:tayfun73,6,5,00:00:12,4,75.00%,66.67%,$0.00
/doku.php?id=xerath_middle_guide,6,2,00:00:11,1,100.00%,16.67%,$0.00
/doku.php?do=search&id=bitshares&fulltext=Search,5,2,00:00:08,0,0.00%,20.00%,$0.00
/doku.php?do=search&id=bounties&fulltext=Search,5,2,00:00:07,0,0.00%,0.00%,$0.00
/doku.php?id=4k_televisions_are_not_ready,5,5,00:00:28,4,100.00%,80.00%,$0.00
/doku.php?id=a_massive_investigation_of_instamines_and_fastmines_for_the_top_alt_coins&rev=1402859149,5,4,00:00:30,4,50.00%,40.00%,$0.00
/doku.php?id=a_massive_investigation_of_instamines_and_fastmines_for_the_top_alt_coins&s=,5,4,00:23:53,4,75.00%,80.00%,$0.00
/doku.php?id=ahri_middle_guide,5,4,00:01:17,4,25.00%,40.00%,$0.00
/doku.php?id=applying_technical_trading_rules_to_bitcoin,5,4,00:03:56,4,50.00%,40.00%,$0.00
/doku.php?id=are_certifications_better_than_degrees,5,3,00:00:13,0,0.00%,20.00%,$0.00
/doku.php?id=attic_conversions&do=revisions,5,1,00:00:13,0,0.00%,0.00%,$0.00
/doku.php?id=can_pro_life_and_pro_choice_individuals_or_tribes_ever_find_any_common_ground,5,2,00:04:47,1,100.00%,20.00%,$0.00
/doku.php?id=category:novellas,5,3,00:00:06,0,0.00%,0.00%,$0.00
/doku.php?id=devcoin_open_web_wallet_configuration,5,5,00:00:00,5,100.00%,100.00%,$0.00