-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpostgres_tst.in
1501 lines (1501 loc) · 127 KB
/
postgres_tst.in
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
#!comment: Built with pass_gen.pl using RAW mode, 0 to 128 characters dict file=unknown
u0:$postgres$postgres*73497568*d2a47c5cbef2bacec44a47102fd4f1b7:0:0:Skippinç anä*::
u1:$postgres$postgres*63776735*9832900d0143af17f4e625b2133c04fc:1:0:Skipping and*::
u2:$postgres$postgres*4858664f*09521692357740f21118a108a134fbe8:2:0:Bert$ErîIE::
u3:$postgres$postgres*76796966*af1ae5a4e3a496ed964ab359ade2069f:3:0:Bert$ErnIE::
u4:$postgres$postgres*38626d36*7b9ae361f2e8ad0e2c05896b4dfad352:4:0:bert*ernie::
u5:$postgres$postgres*37386b53*e1944544b255fb9450c80c9b460f4088:5:0:late*night::
u6:$postgres$postgres*53743337*a2434849fd7fa1ece9d6b652d446ebb1:6:0:::
u7:$postgres$postgres*4657744f*7a66b348defa93c3368fd048c1339ad9:7:0: ::
u8:$postgres$postgres*59544e45*94a35bf9a83ea1c73c9166c1ea22e65a:8:0:1::
u9:$postgres$postgres*364a4e4a*1cc78264eadd597cda68049807733131:9:0:password::
u10:$postgres$postgres*6f517475*39a3588c37138428dd5d5055a1c253f3:10:0:test::
u11:$postgres$postgres*495a4855*7031b2fef817f7498f82a2d1f4c3b737:11:0:late*niçhô::
u12:$postgres$postgres*50763268*96cc1ff3e86bd49a62e79da726151fde:12:0:hello::
u13:$postgres$postgres*62596579*462d7ca71cc628bb435a519f6403750b:13:0:Skipping and& Dipping::
u14:$postgres$postgres*41597067*87277bcf33d6cba1259c2ceda8bcacda:14:0:!!!!!!!!!::
u15:$postgres$postgres*4361464b*ebae7ee91a129ae47aa169b277be98aa:15:0:ttttttttttt::
u16:$postgres$postgres*6757614b*516c4fb8701134e73bffe54010500ae0:16:0:±::
u17:$postgres$postgres*67585044*51bdcd6a3d8a47292996e8096df91d02:17:0:pass÷ord::
u18:$postgres$postgres*6b487146*8360d0b81c66027192de6fbc47109654:18:0:dffffffffffff::
u19:$postgres$postgres*4c7a6659*adc6b3e44096438b76279d7a96b5d000:19:0:ôåst::
u20:$postgres$postgres*69673079*318ece7a58c0c5c45e6eb93b62ad92a4:20:0:Skipðing and& Diðping::
u21:$postgres$postgres*4e375877*7d16ab14894320b6410bbd4d3f2c580b:21:0:alsfdkja;::
u22:$postgres$ninechars*4d74316a*97bade014c422cd02519f66ca92f8605:22:0:qerwt::
u23:$postgres$postgres*64705934*3b90e3b6aa015754f594d601611dbeed:23:0:ôtttttttttô::
u24:$postgres$postgres*6e783537*6f7bbfd0a677ad5e329d6aa600718c4f:24:0:dæffffæffæfff::
u25:$postgres$postgres*5a623930*d81beeb2c698357c6453303b15a40051:25:0:q֌rt12345::
u26:$postgres$postgres*734a3449*6cacbbb5feb15f9dc451249d6557d1b8:26:0:qwerty::
u27:$postgres$postgres*67345342*215bb9666f468e1a0f11497c230f04a2:27:0:qwert12345::
u28:$postgres$postgres*5259786c*1995d8ff313e0210a41fde4e8ff8ce52:28:0:12345::
u29:$postgres$postgres*36797066*d1a0df29b197dce8e7c436c8ea70756a:29:0:12qw34er::
u30:$postgres$postgres*68517652*2aab21989dcdebdd11b6177c898855e7:30:0:johnripper::
u31:$postgres$postgres*34643362*a551fc16aef6f3a9d087155a2ffb0d54:31:0:1²345::
u32:$postgres$postgres*61494137*832c3a9a5b918d6335ffe83c46ddd090:32:0:letmein::
u33:$postgres$postgres*78595232*38cd943d069ae268085f56fbd965788e:33:0:trustno1::
u34:$postgres$postgres*68705344*6eeb7b94e473307e06bac227bb1f2d73:34:0:sppooky::
u35:$postgres$postgres*65316d55*e9d7c12a90232cb0dd2a73b5d1938e2a:35:0:12qw3´eò::
u36:$postgres$postgres*346d364f*5454d43063eb05080143a490b65008ce:36:0:gobble::
u37:$postgres$postgres*47667365*1c46720911b36606a812b00b30a86d60:37:0:summer::
u38:$postgres$postgres*72516432*724d7c1a9a409458bb6bac901ba51cf3:38:0:aksarban::
u39:$postgres$postgres*4f504e71*08867ca10b1519c5408cf92c5e89539d:39:0:johnny::
u40:$postgres$postgres*59307948*18949f4444ef2dba20d9aece62ec5962:40:0:admin::
u41:$postgres$postgres*75367048*77f7d8040c62a955abf8c8eeb40eb550:41:0:password1::
u42:$postgres$postgres*4f396872*ad34f5cb93a37ea022276a6a112d668c:42:0:Password1::
u43:$postgres$postgres*4338325a*bbdcf95f5c854a5350a976c00b1b61d4:43:0:letMein::
u44:$postgres$postgres*41325765*1e919d6a55d961f4669c169c8396d388:44:0:HookFish::
u45:$postgres$postgres*3156416d*9b93cfa556a323d30b7772036c73e4f3:45:0:Swordfish::
u46:$postgres$postgres*56493338*09461f13c548dc78683138915982833d:46:0:letíein::
u47:$postgres$postgres*5a583968*0edadb29857b3d89db8851673069a65d:47:0:swordfish::
u48:$postgres$postgres*36793243*e6e20e362f6b232a07eee42f5c9a1b68:48:0:limiey::
u49:$postgres$postgres*6574354a*66e98a47b7dd5982771db67c5a0560c6:49:0:asdfasfga::
u50:$postgres$postgres*6d336f6b*fe0bb3c20808edb8902e87f80570f942:50:0:aksarâaî::
u51:$postgres$postgres*42694648*1c268415d499dbc85576fff60959f481:51:0:flasjkdfw::
u52:$postgres$postgres*44574d66*e1eaf3aa8682ab54502e54e6e9d4dc0c:52:0:%72haba*(::
u53:$postgres$postgres*62784838*fd7f86946dbabf0fc2452792f409d7ba:53:0:start123::
u54:$postgres$postgres*57624b46*bb898646d63ada3a2e7e02330bb765d2:54:0:start1::
u55:$postgres$postgres*6a766655*563d812fa98b2f7d177cbd858b559bc0:55:0:start12::
u56:$postgres$postgres*55335043*d24a2061585fbeb70318ce23d0e3cf6b:56:0:bumprump::
u57:$postgres$postgres*6a664e67*f9d8167ae5a5db83680e32d086322654:57:0:pentium::
u58:$postgres$postgres*79656176*81975015fbdced42e2ca42e90aa1e8cb:58:0:PIII::
u59:$postgres$postgres*534a6134*b815991d698ad543c37749c02dffca57:59:0:permit::
u60:$postgres$postgres*65727549*26a26640c9bc590574285bccbe3d06fd:60:0:johînù::
u61:$postgres$postgres*6350714a*0f5730de43e810d062d2b30034b9d122:61:0:ReplyNow::
u62:$postgres$postgres*61423751*846c23f69c09b217c94d4f4f7dd8e9f3:62:0:admiî::
u63:$postgres$postgres*61526354*2f45490d4d043e504111c5031c11bd24:63:0:BBSPw::
u64:$postgres$postgres*6163566a*d8c999063d0949f6617b9e4a0d8d0c95:64:0:pássword1::
u65:$postgres$postgres*37455557*455903aec40b8eb39babab44e5c2015e:65:0:Pass÷ord1::
u66:$postgres$postgres*38554275*1f82d80473e14d342519edc5d5954dc9:66:0:GoldenLight::
u67:$postgres$postgres*6542706e*a08e78291b772856be1fcfae6c3cd031:67:0:Rejectme::
u68:$postgres$postgres*48415171*401a7bd3ee79cf1a36696192e2065739:68:0:susans::
u69:$postgres$postgres*6d313764*8dd88c441ae428d0895a4efa3ddfc1d1:69:0:late&*night::
u70:$postgres$postgres*36634e4a*d9d9199a3e9c0d6e3df49b25c698d9f5:70:0:Dec 18, 1992::
u71:$postgres$postgres*6b7a6362*9f15cc5d0399c4c72ddd340a64d80dd4:71:0:Wellington::
u72:$postgres$postgres*44724347*7ed44007b12fe02ad95b990720668b5c:72:0:t00nv1ll3::
u73:$postgres$postgres*57366d33*aeee007fd0f441d0a81cfd9fad0e7823:73:0:Bert&Ernie::
u74:$postgres$seven17characters*34733150*c40679cbd038fd0b2ea9f0cca372da82:74:0:letMåin::
u75:$postgres$postgres*76784541*e7da1e14be32e6c6d57f478f00d21f12:75:0:Dragonquest::
u76:$postgres$postgres*30615469*807d14f0f2d641be908b6d41a8d46861:76:0:inkjet::
u77:$postgres$postgres*4e6c3565*19a16bdf00ab59ca92bb9863d522f7a6:77:0:jamestkirk::
u78:$postgres$postgres*6e5a554a*fadcf11eea7afafb4ca14b0497770b1e:78:0:X-files::
u79:$postgres$postgres*37635a46*2e7761b1a380cd7cf69418b51be3f59b:79:0:boneheadded::
u80:$postgres$postgres*465a7733*ef40c13d9d7f6d3d04705f2a767771a2:80:0:Swordæésh::
u81:$postgres$postgres*484c5953*f54a1f9beee2d0e820275779792e29bc:81:0:justmysize::
u82:$postgres$postgres*4a776950*ec4fe222522ea05b02636b91fc0f1d86:82:0:outleft::
u83:$postgres$postgres*356b6d55*ec28771c563bfbe54a0ac69ccc50c91c:83:0:hhello::
u84:$postgres$postgres*51466634*461517458bfbd9f304fa3622d18e8191:84:0:enterNow::
u85:$postgres$postgres*36786d6f*071b2aab35236a2619db84ff279a77f8:85:0:IwasJu$there::
u86:$postgres$postgres*55303366*ffaa2d57fd9676d71f50bc8fc9ec0fd6:86:0:DOGBERT::
u87:$postgres$postgres*37564933*f10b39b2b1e142acd351ed21bd512a30:87:0:swïrdfisè::
u88:$postgres$postgres*5a377937*3362418ac1069ef73d3be8c224f4f46f:88:0:flasêëdf÷::
u89:$postgres$postgres*5a464264*64b9b5357b8fc207d1bc9433b623fe56:89:0:fukOFF::
u90:$postgres$postgres*7642756f*6aed96c3d566e7b91d8389fa9f2644bd:90:0:develsdue::
u91:$postgres$postgres*6f547657*d7b365d8ac756323e9cf8664758251e5:91:0:bartlby::
u92:$postgres$postgres*644d3837*a727622785c1d2d2333793247f1040c3:92:0:characters::
u93:$postgres$postgres*6e635530*5f9f36064beb3238297ab391c0bbe573:93:0:good to KN0W::
u94:$postgres$postgres*33525941*771993251b1806bb34419c43238c0e62:94:0:1__1::
u95:$postgres$postgres*75425158*ab88518fe30122b0746af3e87874fb12:95:0:%72haâaª(::
u96:$postgres$postgres*72794546*c0f84e56e7cafbbaed115b70fa90312d:96:0:password__1::
u97:$postgres$postgres*6b50364b*28ecb6bb66fea20a66eb6b5baac60eb5:97:0:test__1::
u98:$postgres$postgres*61323069*8968e50b1051af196e1013901a3cd31f:98:0:start±23::
u99:$postgres$postgres*42754938*a66a22a69f60e4fcd1a5521e925e5c20:99:0:hello__1::
u100:$postgres$postgres*4755526a*a00cca8fa26b2a6831cf9981e7855704:100:0:Skipping and& Dipping__1::
u101:$postgres$postgres*48646670*8014561f783264084bca2ed152748d5b:101:0:buíprump::
u102:$postgres$postgres*45444667*be3b0869a9629e524e3416e0ef4d2d18:102:0:!!!!!!!!!__1::
u103:$postgres$skippy*384f3156*072a2c927e366d56b945469474ea6d37:103:0:peîtium::
u104:$postgres$postgres*467a5469*30830db0c542ee450acea515c1bd64bc:104:0:ttttttttttt__1::
u105:$postgres$postgres*4c416777*40ae77964a209ea046938e6c222c928e:105:0:dffffffffffff__1::
u106:$postgres$postgres*46525a68*d8966b5aa80a4621a548717edc4f7698:106:0:alsfdkja;__1::
u107:$postgres$postgres*48594571*974b0083f4c400b96c3eab0738e76686:107:0:qerwt__1::
u108:$postgres$postgres*6f6e4938*0a459423ede5ae8d8b747b63f5826c03:108:0:PÉII::
u109:$postgres$postgres*4e4a3631*66ba1247642a3dc44b0fe36c825e5331:109:0:qwerty__1::
u110:$postgres$postgres*524d7a45*57cf236e685959a8ec866bdd34afad05:110:0:qwert12345__1::
u111:$postgres$postgres*62533670*0ec9a8eed2506a8ca535ad0154e86f20:111:0:permiô::
u112:$postgres$postgres*664d774b*3969912a57149aa27189dcae3c05cfff:112:0:12345__1::
u113:$postgres$postgres*3761584d*010f2cfb7edf97184490a133ccc06b46:113:0:12qw34er__1::
u114:$postgres$postgres*46465532*fc3a50b3ed8cca8bb625d2d543a26ef8:114:0:johnripper__1::
u115:$postgres$postgres*46673566*5f4af476dae5e1d96262b6267e949a4c:115:0:GoldenLéght::
u116:$postgres$postgres*53427735*a6210309e3b6f43f2d5748f1f69af165:116:0:Reêectme::
u117:$postgres$postgres*74393555*22f65afd90cb6389b9fa3190725789ba:117:0:letmein__1::
u118:$postgres$postgres*4c584876*6c9a9009749e744c401bae79f63e016a:118:0:trustno1__1::
u119:$postgres$postgres*67617936*27985e989bf4a01cef5c5bf56739b7f8:119:0:láte&*îiçht::
u120:$postgres$postgres*4c595832*2be6eab35e051f2a7777c3a60fa16894:120:0:sppooky__1::
u121:$postgres$postgres*7355614b*a049fb7ba00211e20df9f57e1d013f81:121:0:gobble__1::
u122:$postgres$postgres*46564253*1a7d1fa859c4aecdb433caf003af907b:122:0:summer__1::
u123:$postgres$postgres*494c4c6e*3778d7904f9f9a250c347b20483a965b:123:0:aksarban__1::
u124:$postgres$postgres*4d7a4b58*02d767e3a232703b135b32f17f96e980:124:0:johnny__1::
u125:$postgres$postgres*4a42376e*89ea88d18c5e8a1bde5545da6fe3534e:125:0:admin__1::
u126:$postgres$postgres*70515135*a3c36d9d9d476003095173687723c494:126:0:password1__1::
u127:$postgres$postgres*34494467*07c4ff001af384b04ed22459b1eb79fe:127:0:Password1__1::
u128:$postgres$postgres*6274794a*6f24f0e35bac4dee28ad3191770057ed:128:0:letMein__1::
u129:$postgres$postgres*50673464*dc73300952e2839fe71f965c0efe22f4:129:0:Dåc 18, ±992::
u130:$postgres$postgres*6c374e4d*8ea5adbdfd7d2fe619037112254ce7a4:130:0:HookFish__1::
u131:$postgres$postgres*32356234*cbb42cb4e2ddad5dc7ce4724e004587d:131:0:Swordfish__1::
u132:$postgres$postgres*665a324a*8a339857d6e43f69a5114d2afed2db63:132:0:×elliîgtïn::
u133:$postgres$postgres*4731356e*2390ab70dea3ae4d83eff71256e21ecd:133:0:swordfish__1::
u134:$postgres$postgres*4c527574*36126e580bfe10281eb60da428a3e34f:134:0:limiey__1::
u135:$postgres$postgres*57774857*d44468df41f3ec6b270aac964402ab8d:135:0:asdfasfga__1::
u136:$postgres$postgres*6571627a*686b2f618de5941311907ac95ab49a87:136:0:t00nv1lì3::
u137:$postgres$postgres*4b61586e*cb64845cb18085a72f5dfa07d348270b:137:0:flasjkdfw__1::
u138:$postgres$postgres*4f573630*9630cdb9dff44f27b546067fc2204532:138:0:%72haba*(__1::
u139:$postgres$postgres*4a30365a*17b6dee3277dd3a4be59116ddc4ecd3d:139:0:start123__1::
u140:$postgres$postgres*6575614d*cc32833f37574a28b483abdd1675a6a9:140:0:start1__1::
u141:$postgres$postgres*714b6244*8be1e789d965912f4f557206905b6fd7:141:0:start12__1::
u142:$postgres$postgres*4a734358*e45d1c1648db04479e693525b83d77e4:142:0:bumprump__1::
u143:$postgres$postgres*35484332*a527d208ff3784b874089412199ae0ea:143:0:pentium__1::
u144:$postgres$postgres*69534f5a*bf4f8876bac1271bad485c40b647b6ea:144:0:PIII__1::
u145:$postgres$postgres*59527748*2d4bc5222422b9414c7dcef22f61b1a9:145:0:permit__1::
u146:$postgres$postgres*41644943*7a192af1de715806a36186231d4b642d:146:0:ReplyNow__1::
u147:$postgres$postgres*5a644872*f9752bc70ba0cd7f64977fb5d34f36b8:147:0:BBSPw__1::
u148:$postgres$postgres*58685145*7ba8b0ea1245a26714919c72bcc29779:148:0:GoldenLight__1::
u149:$postgres$postgres*6e536f38*bc7162818e257199b854678992fef79c:149:0:Rejectme__1::
u150:$postgres$postgres*58743565*637fd38b934f509b683ddaf93ee2ec28:150:0:susans__1::
u151:$postgres$postgres*67494f42*453edba691fa4bd1a12f50d5b43c4a43:151:0:Bert¦Eònée::
u152:$postgres$postgres*4b447548*9682cacea496be39ca78d6910e816bb7:152:0:late&*night__1::
u153:$postgres$postgres*43677744*cd079ecd3114071749e2a618ab7d98d3:153:0:Dec 18, 1992__1::
u154:$postgres$postgres*68635154*adb8a66312e0dae42a29edefa953c8df:154:0:Wellington__1::
u155:$postgres$postgres*7a41746a*38c3dc760e3bb9f8f48ea1b3d146b587:155:0:t00nv1ll3__1::
u156:$postgres$postgres*41483265*9dd2c102a5680c2828394254c968c64c:156:0:Bert&Ernie__1::
u157:$postgres$postgres*6e414546*d7f384cd65be8be620bab181a86e888f:157:0:Dragonqueót::
u158:$postgres$postgres*494a3070*7f7e8b8e5a0498beef3fb5699008f3b6:158:0:Dragonquest__1::
u159:$postgres$postgres*6c6e5956*c8e05bfb45fd57aa2a0f58e4f4cbed75:159:0:inkjet__1::
u160:$postgres$postgres*56326c57*deadab79a24b07d6d18bec1391937631:160:0:jamesôkirk::
u161:$postgres$postgres*6431414e*fefdb533961a8fd48c1d39560c445e9c:161:0:jamestkirk__1::
u162:$postgres$postgres*51695849*1945a2b057461e7c10b0db7dfc40b810:162:0:Ø-fiìes::
u163:$postgres$postgres*6d77385a*bd99d9567d05bc07ab7eb0018abe38e0:163:0:X-files__1::
u164:$postgres$postgres*695a4448*8efb427ed8d979149e8f367c98298587:164:0:boneheadded__1::
u165:$postgres$postgres*476b6a6a*203a90604795ef93500b5c5ca602b9a7:165:0:justmysize__1::
u166:$postgres$postgres*784f6b4a*98d46352cbb630501d5f6bfbd1d7e6f2:166:0:âoneheaädåd::
u167:$postgres$postgres*59596f56*bd4bab2546e9103ebae9ae96c3a03e61:167:0:outleft__1::
u168:$postgres$postgres*776e5452*fb464a26c6310b2d16330802326dacf5:168:0:jusômùsize::
u169:$postgres$postgres*58697537*c27c400f5705a4ec6816f38deaca9f7d:169:0:outìeft::
u170:$postgres$postgres*48665358*cebd504e983a46ac55257a77f11db239:170:0:hhello__1::
u171:$postgres$postgres*6e476350*45e7b629d948b4a59da1197d7b93653b:171:0:enterNow__1::
u172:$postgres$postgres*75554852*9589ba555bb97befaf6d376ed55a37cc:172:0:IwasJu$there__1::
u173:$postgres$postgres*4d57684e*a66210df58f7bd229cce3df37dbc793e:173:0:DOGBERT__1::
u174:$postgres$postgres*57366631*39baec67e1fd3b20c3c3997272016827:174:0:fukOFF__1::
u175:$postgres$postgres*33725a6d*e3c8d0293b9b96f5f4be99d5058449ca:175:0:hheììo::
u176:$postgres$postgres*44727273*c4cd05226fa0ccd60f132c07f86e7666:176:0:develsdue__1::
u177:$postgres$postgres*5a586d6b*ceaab0942b75a1da16fa0b306c2aa747:177:0:bartlby__1::
u178:$postgres$postgres*62554657*5a41cada322c9adbead38c9a95b74917:178:0:characters__1::
u179:$postgres$postgres*4a564b45*2068e20a1e2537adb088767ed45e34da:179:0:good to KN0W__1::
u180:$postgres$Johnson*714e3170*455581d9950448cc8483a50efd8a7178:180:0:1__2::
u181:$postgres$postgres*76784f50*c63c644e7e8e88a5477994be8930fab9:181:0:password__2::
u182:$postgres$postgres*55555267*378954b0fd06496d86fcc40d6a1eb7ab:182:0:entårÎow::
u183:$postgres$postgres*774b6768*59295b3c1bb2a0d67c40449f6e16cda1:183:0:IwaóJu$there::
u184:$postgres$postgres*424f4752*7ad0fe3d762c20aa41bd3140b29488df:184:0:deveìódõe::
u185:$postgres$postgres*4c757130*93ae33ba02d3446feef9a669b2b4d63b:185:0:test__2::
u186:$postgres$postgres*62674737*f1b06c15dd74a0740285d61e758b9219:186:0:hello__2::
u187:$postgres$postgres*794b5459*fa976502195e1b5a9f03332e344118bf:187:0:âartlby::
u188:$postgres$postgres*6d647167*d3deabef7051fcb5d6278fbebc7921fc:188:0:cháraãteòs::
u189:$postgres$postgres*726c6632*279b3523ce7b87e648966e31ccb3b5d8:189:0:Skipping and& Dipping__2::
u190:$postgres$postgres*59334142*7dae54423fd5b4d1ab3677708a7392aa:190:0:good to KN0×::
u191:$postgres$postgres*52396a6e*b11b76b291bf7d19b3e91c886e927933:191:0:1__±::
u192:$postgres$postgres*55343755*faade606e78db1aa352390b24e720294:192:0:!!!!!!!!!__2::
u193:$postgres$postgres*4f374235*49973f73448f86200071c30acdbf8790:193:0:ttttttttttt__2::
u194:$postgres$postgres*4f627139*6973c9dbf215892d85fc540f1fa66e80:194:0:dffffffffffff__2::
u195:$postgres$postgres*4f784856*5189ad8ae55d710be0ad5b6a7f724793:195:0:alsfdkja;__2::
u196:$postgres$postgres*4c365434*cf5a8ce52a6cf5c5e594845d3270f53c:196:0:hello__±::
u197:$postgres$postgres*32436c43*8eaaaab050dd367075923204af089b89:197:0:qerwt__2::
u198:$postgres$postgres*304e4f52*a9d025009cd6d5eef00766f6936ea510:198:0:Sëipping and& Dipping__1::
u199:$postgres$postgres*6d506d74*dbfecb094ea52bfabe24073d1c61702b:199:0:qwerty__2::
u200:$postgres$postgres*58474c33*90d96453211c5ac8caab9d5b25310c69:200:0:qwert12345__2::
u201:$postgres$postgres*58455a69*4a54a408f3f41630e094a44663f9516d:201:0:12345__2::
u202:$postgres$postgres*6646506d*28494de9daba8da7e6c2c3dc5faf86ec:202:0:12qw34er__2::
u203:$postgres$postgres*45544164*ee7965bf8d236a704afeb82b097ecb03:203:0:johnripper__2::
u204:$postgres$postgres*47527130*eb73596c343f9b361406b4842f09685d:204:0:letmein__2::
u205:$postgres$postgres*6c664e62*435b9ef519119a9445d158cb77bdcc5d:205:0:trustno1__2::
u206:$postgres$postgres*436c3357*5df018455328eedb6157eeb98543c175:206:0:!¡!¡!!¡!!__1::
u207:$postgres$postgres*6465544b*ac638a877545d0c03337bc53d4367026:207:0:sppooky__2::
u208:$postgres$postgres*437a7868*fe2d62a8e86180070fdaa9266662bd9a:208:0:gobble__2::
u209:$postgres$postgres*45595843*d368d70436982e662ae464c24c0f30ed:209:0:summer__2::
u210:$postgres$postgres*65576f59*841a8a8f0c525f03566f677e82198683:210:0:aksarban__2::
u211:$postgres$postgres*4b6a634e*e9ed785bf0388f3869e1f06d8771897f:211:0:ttttôôttttô__1::
u212:$postgres$postgres*4239324b*0ef93e10132888a7502af2607d2864a7:212:0:johnny__2::
u213:$postgres$postgres*76754958*879d56be7bc1e7becf2353a866b4fe4f:213:0:dffffffffffff_ß1::
u214:$postgres$postgres*63324474*036e31bd3375a17184d42c301a55fa2a:214:0:admin__2::
u215:$postgres$postgres*6977434d*5a7b3fe88f9f5f30e0ef7656fdd7e9ed:215:0:password1__2::
u216:$postgres$postgres*75494846*869e896d5be2f8a9b2889e6db684e096:216:0:Password1__2::
u217:$postgres$postgres*7a646262*fc1ae892d896c290dc74ad2a4cd44570:217:0:alófdëjá;ß_±::
u218:$postgres$postgres*49624d69*1aa118cbd9249cff4bd08810e0b723c0:218:0:letMein__2::
u219:$postgres$postgres*54504277*152114b9ff3f69d3ec5001d500873f72:219:0:qårwt__1::
u220:$postgres$Twelve_chars*55393156*c01df9affa7573ef32ec143759f3e005:220:0:HookFish__2::
u221:$postgres$postgres*68475a6e*ef0d5710a78d124923ffc32fa5b5a706:221:0:Swordfish__2::
u222:$postgres$postgres*364f326a*3c1631372c5e6be4e8462ea1876ed554:222:0:qwertyß_1::
u223:$postgres$postgres*79364670*7ecc9d5e905b9a7bf63af70bfc112b54:223:0:swordfish__2::
u224:$postgres$postgres*4135324d*660576c0ca606709c5a4469434ce8b4a:224:0:limiey__2::
u225:$postgres$postgres*416e4e68*30f215a59141b16f9d4303eaf0d0801b:225:0:qwert±2345__1::
u226:$postgres$Bing*6a393170*8bb8bb1495b8f6f4ba34f298da0333ac:226:0:asdfasfga__2::
u227:$postgres$postgres*42787045*b8ede722609986e421f431d6312cef67:227:0:flasjkdfw__2::
u228:$postgres$postgres*30555879*ea4ca78503ddc04da54d179a9fa7b702:228:0:±2qw34er__1::
u229:$postgres$postgres*70316352*2eca4a4e4418e2898b13025cee21c674:229:0:%72haba*(__2::
u230:$postgres$postgres*3943395a*62d8d71309716950e7e652799e5909ca:230:0:start123__2::
u231:$postgres$postgres*734e7832*692a66611e3187f4d1f7518f2b00884e:231:0:start1__2::
u232:$postgres$postgres*6a644441*063fa041f85cc36d3bc30f056ab36695:232:0:start12__2::
u233:$postgres$postgres*44685a78*93d8f4440036ab4d3c6551ae9f825c5b:233:0:bumprump__2::
u234:$postgres$postgres*6c5a6448*f3db9a04bf1bcc55ce505d1da28cc788:234:0:pentium__2::
u235:$postgres$postgres*44484455*785c5657f89092e9bcd5f1df6105fc34:235:0:PIII__2::
u236:$postgres$postgres*336c6545*615a30b50f07a6728103b769bced189c:236:0:permit__2::
u237:$postgres$postgres*4d763442*c58910a7704c1ae1a58159dff7fe718a:237:0:ReplyNow__2::
u238:$postgres$postgres*38523678*7d540c80ac2b34521030fd47ef3aa16e:238:0:BBSPw__2::
u239:$postgres$postgres*59377367*d5b0e2878a3ed23eb3bf4f8a2fa05a06:239:0:GoldenLight__2::
u240:$postgres$postgres*4751666e*c984a3e1edcf68d56c1c5d17fdfb18cb:240:0:Rejectme__2::
u241:$postgres$postgres*78664a53*f3b704b73c532eafe4fd5cd61eb96f8a:241:0:johnriðper__1::
u242:$postgres$postgres*6f594b74*f16c1c46fda685a4aee733504b187361:242:0:susans__2::
u243:$postgres$postgres*45427542*60f1e3757929dce1a27b17c17fc839a9:243:0:late&*night__2::
u244:$postgres$postgres*554d4c45*b2b8603b68da3d5d0379ef3f07375795:244:0:Dec 18, 1992__2::
u245:$postgres$postgres*696a6c55*0367cd472f331b6ef130b90490803b4a:245:0:Wellington__2::
u246:$postgres$postgres*3372676e*9dd50dff1e5f7e722d5f66ab93d495c3:246:0:ìetmeiî__±::
u247:$postgres$postgres*345a5959*10e670197c78c6d17cc3036339bcf771:247:0:t00nv1ll3__2::
u248:$postgres$postgres*62504776*387f2bf5531c1649d09dc9085917660b:248:0:Bert&Ernie__2::
u249:$postgres$postgres*5453576a*3f9b9b0ae1f88be7a5ed81c9e0d5753b:249:0:Dragonquest__2::
u250:$postgres$postgres*7a54726d*138217eb44f013ca98709b7d22ccdb89:250:0:inkjet__2::
u251:$postgres$postgres*4a784743*36b33b6f7aadbf5d81b452e17d4c148b:251:0:jamestkirk__2::
u252:$postgres$postgres*6f4a764a*e41afd3818e764483526fc11c2f50451:252:0:trusôîï1__1::
u253:$postgres$postgres*5a7a454a*2018fa470ea85e7b0b94c82bd829311a:253:0:X-files__2::
u254:$postgres$postgres*5a6a4c79*ad1b42f65313ac31d5660d852b4fd81c:254:0:boneheadded__2::
u255:$postgres$postgres*5270584a*576b683595877ec0da5e754bcfe90c0e:255:0:justmysize__2::
u256:$postgres$postgres*3270454d*ab8a5f1139afbc26ecfb179709d90210:256:0:outleft__2::
u257:$postgres$postgres*33305856*158d9113135bab108581db1230245eed:257:0:hhello__2::
u258:$postgres$postgres*51316f34*0f6decd11584edeec2dff4b34c08795d:258:0:gobbleß_1::
u259:$postgres$postgres*74337956*33934f29361efa8a23b6283c05ff7ccd:259:0:enterNow__2::
u260:$postgres$postgres*4e324a7a*53ed6da0be61264814f658e7e2d35576:260:0:IwasJu$there__2::
u261:$postgres$postgres*4938564e*94cef4a99fbd5cda9682144187952e0d:261:0:DOGBERT__2::
u262:$postgres$postgres*675a674c*fd63138c4101506f98c0c333b058ccf3:262:0:fukOFF__2::
u263:$postgres$postgres*6c594742*96f5758914c1278c22f992ce5905dfc0:263:0:develsdue__2::
u264:$postgres$postgres*734a3776*eb522a6b45dc151e84792c8c9ee36f38:264:0:óummer__1::
u265:$postgres$postgres*62357a45*e48379cb2651b4715b6f11ecf156e459:265:0:bartlby__2::
u266:$postgres$postgres*5a44676c*87d450afea4fbd88ca36b2c202c5d370:266:0:characters__2::
u267:$postgres$postgres*637a4939*bf0c04d9e93d50db86fa87a79170e8f7:267:0:good to KN0W__2::
u268:$postgres$postgres*79495644*f0308c15597180a580173330f9a87942:268:0:1__3::
u269:$postgres$postgres*566c384c*a129d56de0bff74b45b1ce17a2d3f0a3:269:0:password__3::
u270:$postgres$postgres*56473758*5bf38664b8e017199644bf99d3323365:270:0:aksaòban__1::
u271:$postgres$postgres*5a696c4d*f0fa495922f5561315af946b6e40b8eb:271:0:joènny_ß1::
u272:$postgres$postgres*59396151*8df5c1c4c23c9399b1c505db184f9d40:272:0:test__3::
u273:$postgres$postgres*52496738*ba84b5db941fd47e92950fedff25e306:273:0:hello__3::
u274:$postgres$postgres*57497232*a967460586a488b164891416a0e4e5a0:274:0:Skipping and& Dipping__3::
u275:$postgres$Hank*5a72316d*f6127670b6d169c8dd54d1abac83602b:275:0:adíin__1::
u276:$postgres$postgres*5572454d*042338c8309375a0847b0f90a88b73dd:276:0:!!!!!!!!!__3::
u277:$postgres$postgres*664b547a*aa9a38cc31887aff3845e70b7f677333:277:0:pass÷ord1__±::
u278:$postgres$postgres*45316b33*a60e914b710a683ae3e475239bcb9275:278:0:Paós÷ord±ß_1::
u279:$postgres$postgres*57624452*16bba4c889805171667f1c31578ee24d:279:0:ttttttttttt__3::
u280:$postgres$postgres*5a554443*83386311fbb46cb9645fa54a9c80bd97:280:0:dffffffffffff__3::
u281:$postgres$postgres*564c3259*8c094494a42d52c0b5b27562d9f0433d:281:0:alsfdkja;__3::
u282:$postgres$postgres*31413875*81745f409e4064f77ec98bac808040d5:282:0:qerwt__3::
u283:$postgres$postgres*616d7973*1c74bc9b90a58a79e8f704aea511c5e5:283:0:qwerty__3::
u284:$postgres$postgres*7437564e*55e638a2274a7ea6ea4f08f71543162f:284:0:qwert12345__3::
u285:$postgres$postgres*394e646f*d3fc8d0ada390bcfee929a4c643a3f06:285:0:12345__3::
u286:$postgres$postgres*39636b69*1eb51b34d6c1a7e6e4fd2fa81e73bfde:286:0:12qw34er__3::
u287:$postgres$postgres*4f774c39*d29e25e338ffd45ad23175821a57fcee:287:0:leôMein__1::
u288:$postgres$postgres*324b3930*b527df7b9265155a88ac7f7f9b899f6b:288:0:johnripper__3::
u289:$postgres$postgres*59644159*71f0c1d8c6454d3c4316c4445be4fb4d:289:0:letmein__3::
u290:$postgres$postgres*62684a78*d3b57c3372933acb170e3488b2df1eec:290:0:trustno1__3::
u291:$postgres$postgres*5a4d6b4b*1631d18707db8fa4b3050e3b0cff9bf1:291:0:sppooky__3::
u292:$postgres$postgres*434e4a52*f3024ea5b7e5d2a2c90b2401aef84353:292:0:gobble__3::
u293:$postgres$postgres*4d526e74*42e5b6efbd31c3faf32695d68261fb1a:293:0:summer__3::
u294:$postgres$postgres*50594d6a*749c116da61d2b771437f2a9ff44b9cf:294:0:aksarban__3::
u295:$postgres$postgres*6c447054*200ba63a2d20ebb13e309c410eaa76d7:295:0:johnny__3::
u296:$postgres$postgres*76737272*ca723148e909b40506dce8052870ea96:296:0:admin__3::
u297:$postgres$postgres*59777477*d6bd43449e013728988d71ae57a1c9aa:297:0:HïokFish__1::
u298:$postgres$postgres*69364578*af404b9420bf6a82fd377e310043b9ad:298:0:swïrdfisè__1::
u299:$postgres$postgres*4b716542*46cb72333686d4830086f983d02625bd:299:0:password1__3::
u300:$postgres$postgres*624c4742*f1516e2bb42863a55bd5a9a8d3ce5796:300:0:Password1__3::
u301:$postgres$postgres*79765a65*c6cc2052dde06df2613a0325bd6d0278:301:0:letMein__3::
u302:$postgres$postgres*43386174*ec7d450fc6cba204371325104a650176:302:0:HookFish__3::
u303:$postgres$postgres*55725152*989faf3e378c637bd4cf165ab7d1d575:303:0:ìimiåy__±::
u304:$postgres$postgres*484d4a42*2bce841ce03b055f17b4a4209f9849e7:304:0:Swordfish__3::
u305:$postgres$postgres*5977306a*0d4d259d613db3dbf221b05f9d75ccf3:305:0:swordfish__3::
u306:$postgres$postgres*7250694b*e477d04b1ac79a8dd3d4f5504bd742cd:306:0:limiey__3::
u307:$postgres$postgres*5a566a42*4fc425f73115b3a6d1e79bf54ddc75ef:307:0:asdfasfga_ß1::
u308:$postgres$postgres*3156636f*aa88f6aace1f208131a4b57e2f9cf08b:308:0:asdfasfga__3::
u309:$postgres$postgres*77467769*0149875849c8637a6710dde515ddcecd:309:0:flaójkdfw__±::
u310:$postgres$postgres*5a763265*7032b82683b56d24f57032fc3c6f1a70:310:0:flasjkdfw__3::
u311:$postgres$postgres*59316774*2ab2bd1fbe38aa8e08ed6942e90fbc5c:311:0:%72haba*(__3::
u312:$postgres$postgres*634d3947*6c4c180f40fee0f500b3041282baa54e:312:0:start123__3::
u313:$postgres$postgres*5a654a36*4538c6b61f21b2e9c42c0b8ddcc73545:313:0:start1__3::
u314:$postgres$postgres*48355863*a4ce63e0a9bb9f58c6c7a01622ab6d37:314:0:%72haba*¨__1::
u315:$postgres$postgres*6e706c6b*1ed833364bbad986095e30ff1bc646a8:315:0:start12__3::
u316:$postgres$postgres*55614c76*e234ff326fce8f8cccad65c7a5fb1627:316:0:bumprump__3::
u317:$postgres$postgres*4175526d*495c29db835fa9f76b396d84ee3ce216:317:0:pentium__3::
u318:$postgres$postgres*516b7969*26a5647e3207411b98f3e4fd6e86ef03:318:0:PIII__3::
u319:$postgres$postgres*475a7368*a1e80e62c5bc3ac1a15957a0c9cc112f:319:0:permit__3::
u320:$postgres$postgres*4c4b4234*ef3ee5a6d707f11ddd0f92990c85ea0c:320:0:ReplyNow__3::
u321:$postgres$postgres*6c556134*6b27bec4a0baea4e6487d2f6d636cc13:321:0:BBSPw__3::
u322:$postgres$postgres*355a7445*f39fcc6620da96d6a6df7e470d60e016:322:0:GoldenLight__3::
u323:$postgres$postgres*73336847*8b6ee3bfce0ff601ef784971d74ded1e:323:0:Rejectme__3::
u324:$postgres$postgres*42667658*8204de69fc2abbefa91adcd9aa2e6ac3:324:0:susans__3::
u325:$postgres$postgres*65626579*29006b9370e8c549791f5b86d499879e:325:0:start12³ßß1::
u326:$postgres$postgres*4a506156*02a245276c6487bfa6b64397f4c1577b:326:0:late&*night__3::
u327:$postgres$postgres*34443842*80c6ff4e4dc724027e7c3567deb2b55f:327:0:start±__1::
u328:$postgres$postgres*7a533730*a461f1897659b6f38f0a50075a6ef663:328:0:Dec 18, 1992__3::
u329:$postgres$postgres*30683450*228dc7d64ea6d8dd49ee7aeb3f8450fe:329:0:Wellington__3::
u330:$postgres$postgres*38726934*3d66be67aa56648e1d0bae26a0926e54:330:0:t00nv1ll3__3::
u331:$postgres$postgres*77686e72*2b3abaa5a4385fbfd67155ff1c9b1d18:331:0:Bert&Ernie__3::
u332:$postgres$postgres*79566d78*1d683c44783fb13fafe07a6af918e716:332:0:Dragonquest__3::
u333:$postgres$postgres*7264324d*c6d00dcdbf00d03ba093dae009f809ef:333:0:inkjet__3::
u334:$postgres$postgres*474a6b65*ae8cef03a4c27b0c65d1db11d67f9265:334:0:jamestkirk__3::
u335:$postgres$postgres*4631584c*7fb028ef20c4bef635ee0f5662cd3641:335:0:X-files__3::
u336:$postgres$postgres*756d6341*fbc5b86a473164a6142540c245fca7ea:336:0:boneheadded__3::
u337:$postgres$postgres*69704a4b*0a1e55cfa437c8a3da890a8f1641bff2:337:0:justmysize__3::
u338:$postgres$postgres*61685038*c035a805292b87076a7dc97db9eafa87:338:0:outleft__3::
u339:$postgres$postgres*3275754b*8a183a41da78f54ceb607851d5452bbc:339:0:start12ßß1::
u340:$postgres$postgres*414c4b76*f789b18263ffe3f9fbbf0ba67ab8d832:340:0:hhello__3::
u341:$postgres$postgres*70425079*2c9335da995646556512ebe4aa8c2e0b:341:0:pentiuí__1::
u342:$postgres$postgres*6c517844*c95528eafe013512a316f72a5841afd8:342:0:enterNow__3::
u343:$postgres$postgres*52496872*f6790084d6b2a614a3de05614d33cf01:343:0:IwasJu$there__3::
u344:$postgres$postgres*6f71424e*ed6a067e70416f5801360620e5e75db1:344:0:DOGBERT__3::
u345:$postgres$postgres*78575a56*682091c03656a0c46a678f3191742ec6:345:0:ÐIII_ß1::
u346:$postgres$postgres*6b326a71*93405fbfffb6d805b272b05c5d93ef06:346:0:fukOFF__3::
u347:$postgres$postgres*3373365a*99e90aeaf4f03e407bcccea2f1169454:347:0:permiô__1::
u348:$postgres$postgres*67564973*d85f50168e1bed247505c9d681492c72:348:0:develsdue__3::
u349:$postgres$postgres*62796551*d22f1585ad91ac74d7a10b5ed22ebc32:349:0:ReðìyNow__1::
u350:$postgres$postgres*4d7a6863*60f33a1f89c8dbda66e889232f9b5316:350:0:bartlby__3::
u351:$postgres$postgres*73454141*fe83d695ca11d6f35cc73af74a3710dc:351:0:characters__3::
u352:$postgres$postgres*44496850*ba061264ac27c00d6286fb8f1c4e5f6c:352:0:good to KN0W__3::
u353:$postgres$postgres*334f3772*29d94d04fc0bbc11bacf5d1560aab3bb:353:0:1__4::
u354:$postgres$postgres*6b4d5974*40b709cf47df426e2a52b8b56b58221d:354:0:password__4::
u355:$postgres$postgres*62357673*8ce9fb140b9aaa970137de8a52ca787c:355:0:BÂSP÷__±::
u356:$postgres$postgres*6d4b4154*130da0b6b27216ab622a625e4a8dbf06:356:0:ÇïldenLéght__1::
u357:$postgres$postgres*6335366b*6a42072e6d9559a99a2a6739fd211b8e:357:0:test__4::
u358:$postgres$postgres*75776a64*2e67c6adebf52b12b515fcf1890c49ea:358:0:hello__4::
u359:$postgres$postgres*64717479*370e6e1632f5cbf200be0f69715aa885:359:0:Rejecôíe__1::
u360:$postgres$postgres*46444576*15896243e1938693fa0f37b1e4b08ac3:360:0:susáns_ß1::
u361:$postgres$postgres*3773706f*54cb8dd82a2f73b0370d38fce06064df:361:0:late&*niçèt__1::
u362:$postgres$postgres*58677a78*43274c59a5b2554ca20da82dd7d68c2f:362:0:Skipping and& Dipping__4::
u363:$postgres$postgres*41374772*bc085e29f800672c347475b6d7343dbd:363:0:!!!!!!!!!__4::
u364:$postgres$postgres*52746157*139f8855c8c240105f36354c11f29450:364:0:ttttttttttt__4::
u365:$postgres$postgres*5061434a*c17db65ab4428cc557166821a89783c1:365:0:dffffffffffff__4::
u366:$postgres$postgres*68374f44*c00d59d5949c81bd55316766f5b7e5c7:366:0:alsfdkja;__4::
u367:$postgres$postgres*7554454c*e908f0dc5a81c855e1840affb527bb72:367:0:qerwt__4::
u368:$postgres$John*7a583156*ae1c6b1e8e3c38ebfb4a5ddaded30ce9:368:0:qwerty__4::
u369:$postgres$postgres*714e3364*13ed9549131cbeb2f579b6f0535e2ded:369:0:qwert12345__4::
u370:$postgres$postgres*6d6a6977*6dca56d2d08687df177a3238670f6cfa:370:0:12345__4::
u371:$postgres$postgres*5a6f3862*9d04b1918826ab948ce7a49259da5b63:371:0:12qw34er__4::
u372:$postgres$postgres*756e4a43*c212ffe2ec1936719664c257ddd8c8d1:372:0:johnripper__4::
u373:$postgres$postgres*4c7a4438*a08b815d979eef5d481688f457f43ff4:373:0:Dec 18¬ ±99²__1::
u374:$postgres$postgres*68324d49*5f77bbaa643a0377777d9163183e10b9:374:0:letmein__4::
u375:$postgres$postgres*35647357*af2d764d2cba7c6d4215f752ff3182d2:375:0:trustno1__4::
u376:$postgres$postgres*746e6559*14556979d17098adbbce19adfa7c2462:376:0:sppooky__4::
u377:$postgres$postgres*71595567*7e7e477c2b38bc9306ce419801dd26d1:377:0:Welléngtonß_1::
u378:$postgres$postgres*4e663958*c803c5181c9c4c147959b67e983dc970:378:0:gobble__4::
u379:$postgres$postgres*485a574c*fc340bd07ad62b28ff4b79498ea9dfb8:379:0:t00nv1ll3ß_1::
u380:$postgres$postgres*53743049*b7af4fe33223ab3d687c659640800876:380:0:summer__4::
u381:$postgres$postgres*6774625a*e571036b3251e5c919c7ef198576ff50:381:0:aksarban__4::
u382:$postgres$postgres*56455264*6f48e0d905bb027694c3044fbaf12a30:382:0:johnny__4::
u383:$postgres$postgres*74306442*53e81dc144cb3cf1562c0ed0e4db83e5:383:0:admin__4::
u384:$postgres$postgres*576a4772*4421d01d26b42f3c6025ffac669e51fb:384:0:Bert¦Ernie__1::
u385:$postgres$postgres*30495136*c776f93678f05baa72a87a0e2dc66ba4:385:0:password1__4::
u386:$postgres$postgres*3450447a*d0ca734fd3e98399c5ec3610f04be201:386:0:Dragonquestß_±::
u387:$postgres$postgres*506b4434*7179a771bd1ade4dbbcca9a5091caf3e:387:0:Password1__4::
u388:$postgres$postgres*73436d58*133a0778030c2d1b46ae0a8c27817919:388:0:inkêåt__1::
u389:$postgres$postgres*3534704a*965861382102428693eaa390f74fdaad:389:0:letMein__4::
u390:$postgres$postgres*50464b4c*febc3d1a931c5239dcd7ffbb6f9cb263:390:0:HookFish__4::
u391:$postgres$postgres*7a6d6d49*ddb989d30382e489c0343e9472ec2737:391:0:Swordfish__4::
u392:$postgres$postgres*5a6d4536*294d0b2c03e041fbc912f33a9fe45bd0:392:0:swordfish__4::
u393:$postgres$postgres*6e45344e*35cc9bd34f68a6cfe6bb9bd3edc5aace:393:0:limiey__4::
u394:$postgres$postgres*4a616432*d6950c8389a0e5d3fd78671509396c63:394:0:asdfasfga__4::
u395:$postgres$postgres*426f5456*bb3aa2671291cd11a62359628c51b1d2:395:0:flasjkdfw__4::
u396:$postgres$postgres*35664631*35ffb67dfd76358efe36088f33be23d7:396:0:%72haba*(__4::
u397:$postgres$postgres*72457448*1c93d5dc012e609719d7f3942b209fdf:397:0:jamesôëérk__1::
u398:$postgres$postgres*355a4370*caca3eea0aea5eaa5b652c23dfb0a4d4:398:0:start123__4::
u399:$postgres$postgres*524b6343*f9694f0821014557b2f464f53877bbc4:399:0:X-æilås__1::
u400:$postgres$postgres*6c6e3639*be534ded8617720b45db166efa3bcc7a:400:0:start1__4::
u401:$postgres$postgres*3437694b*8452885ed89696cf571a45a3ece7338a:401:0:start12__4::
u402:$postgres$postgres*50676d7a*44cbb09acadd15a124df467439768eca:402:0:bumprump__4::
u403:$postgres$postgres*35654532*0ad744656300607104c6a237e68c5af1:403:0:âoneèeadäedß_1::
u404:$postgres$postgres*41786172*01d59729084edc0ad6e363be8d3f3ece:404:0:justmùsize__1::
u405:$postgres$postgres*6c776e4a*23cdb8c682578e185ce95ade2a78367a:405:0:pentium__4::
u406:$postgres$postgres*35465337*c7ec25dcfb886c86a0bb777dfc883ec9:406:0:PIII__4::
u407:$postgres$postgres*33586464*9131a29bd33410fde230a938c1d94e99:407:0:ïutleæt__1::
u408:$postgres$postgres*30715a77*14d9bd65f52deccddd2316caba0abce3:408:0:permit__4::
u409:$postgres$postgres*4444496d*85731d6e4ab72d7ec6ab52584146c1d2:409:0:ReplyNow__4::
u410:$postgres$postgres*4f32564c*8af03d2e4ad6cfa42ba3944edd6b2af5:410:0:BBSPw__4::
u411:$postgres$postgres*6a735162*e7febc7f5ec33fc1794a998ea39538e7:411:0:hèeìlï__1::
u412:$postgres$postgres*484f4e7a*3697a6e6b954964ffd45175654b8e7a8:412:0:enterÎow__1::
u413:$postgres$postgres*53414848*fd1ec42946dd677fdcce5774b640c01e:413:0:GoldenLight__4::
u414:$postgres$postgres*5749524b*9d09da36eb57aea67e79ba67b8c5a5b1:414:0:IwasÊu$there__1::
u415:$postgres$postgres*44375657*750ed266f234a45855a280f4b27e8265:415:0:DOGBERT__±::
u416:$postgres$postgres*52423267*57d285800980b150df1e79bc10c8268d:416:0:äåöelsdõeß_1::
u417:$postgres$postgres*686f3545*0e93bdbc157c22a613f25666790610de:417:0:Rejectme__4::
u418:$postgres$postgres*70714f49*304896e545617e2b6b8eabf086b835c2:418:0:susans__4::
u419:$postgres$postgres*4b563470*db417ea038f04f695b97d922cefbfcb3:419:0:late&*night__4::
u420:$postgres$postgres*55323668*0c9c67e4082256c35cecee96ba6c625c:420:0:Dec 18, 1992__4::
u421:$postgres$postgres*74575169*8350a210825359f984a012aaf4afbd43:421:0:Wellington__4::
u422:$postgres$postgres*74775244*ed851cb3d5ce72efa44655b66c9c98e0:422:0:t00nv1ll3__4::
u423:$postgres$postgres*5566566d*6a103ca03b807c0b16c8e087da5e25e7:423:0:Bert&Ernie__4::
u424:$postgres$postgres*33787449*f6b5fc9e7f552df1d414c0d0c30cdf8a:424:0:Dragonquest__4::
u425:$postgres$postgres*726e4871*4c15852314833c3ffbe94aaf18fb1200:425:0:inkjet__4::
u426:$postgres$postgres*35595971*80a8dd8dc0f9f9b29bd9c8a4d9261e34:426:0:jamestkirk__4::
u427:$postgres$postgres*79647751*2bc3df8df2ad1eb859aacf493e4e708c:427:0:X-files__4::
u428:$postgres$postgres*39636e54*5ac7c33e11d66bad6bf479048f89332d:428:0:bartìây__1::
u429:$postgres$postgres*4b756346*8c010ec36f0d50860776b8d919a2b1e1:429:0:boneheadded__4::
u430:$postgres$postgres*52325647*0dd51b9cb3b4c01bd08b00c0afc79b3f:430:0:justmysize__4::
u431:$postgres$postgres*34497170*ec778b8f9d5e4756264dc5bdc88c37ac:431:0:outleft__4::
u432:$postgres$postgres*51446462*6f17795dcb3e31d51bf8a0e0a9cd6df1:432:0:hhello__4::
u433:$postgres$postgres*6771736a*129be9d2c8681583b43b3923d6096958:433:0:enterNow__4::
u434:$postgres$postgres*77504576*7ae7b4a68f643c974b292d89cabfe54a:434:0:IwasJu$there__4::
u435:$postgres$postgres*63654f42*2f9df5ae3651f2bab10210791b991630:435:0:DOGBERT__4::
u436:$postgres$postgres*6e507548*ca265809196192d662abb5f432d29635:436:0:fukOFF__4::
u437:$postgres$postgres*354d5361*615bd6589bc8c08949c918a013f23aed:437:0:develsdue__4::
u438:$postgres$postgres*726c5738*6ac0891d243d788d052b2439af79df82:438:0:bartlby__4::
u439:$postgres$postgres*59355933*4e4d87023bb3105a365851802e1818c7:439:0:charactåró__1::
u440:$postgres$postgres*71355571*de2f5fc4c545ce75aee2f5c5a2174be8:440:0:characters__4::
u441:$postgres$postgres*67314d73*bc1176d504c8a60f468969d5d2dcbedc:441:0:good to KN0W__4::
u442:$postgres$u3*42383139*4ecca52c8197526162158fd0782bc286:442:0:1__5::
u443:$postgres$postgres*76636e39*43d2c36228ddfb1dd54d5813bd706c85:443:0:password__5::
u444:$postgres$postgres*6f514255*1e9cd8b6167dcce336aad056d551543b:444:0:çood to KN°W__1::
u445:$postgres$postgres*486d4c75*a40538004bfce0721f3b2e27d923f97c:445:0:ðassword__2::
u446:$postgres$postgres*63467854*65677cdc621050b6a01dfe4d40f8cbfc:446:0:test__5::
u447:$postgres$postgres*5a4d4e59*a14597a8e3e5c87fa7d21013624c8610:447:0:tesô__2::
u448:$postgres$postgres*47734a79*aefff9c4673d47694611878c1d79258b:448:0:hello__5::
u449:$postgres$postgres*5a49586d*f03f91c15f6adb1d05570561d8d81bf0:449:0:hello__²::
u450:$postgres$postgres*435a726c*48df8be8ef4e3fac7851fcbcb5cb0407:450:0:Skipping and& Dipping__5::
u451:$postgres$postgres*44455957*71aafdbb91fc2e7cad850b1f99893f18:451:0:!!!!!!!!!__5::
u452:$postgres$postgres*4f32774b*a21b72b413334d84f8262fccccd35b79:452:0:Skipðéng aîd& Dipping__2::
u453:$postgres$postgres*72475637*60f7f718a8c9813e118616aef5ec9b7d:453:0:ttttttttttt__5::
u454:$postgres$postgres*50514a57*8eddeb167351556a62b7937a6389ffe3:454:0:dffffffffffff__5::
u455:$postgres$postgres*6f367a49*6761f8548859e5ef96cd837f431667ea:455:0:alsfdkja;__5::
u456:$postgres$postgres*68744474*3a1fccb500ba1f809a2f3e00a07d2940:456:0:qerwt__5::
u457:$postgres$postgres*554d537a*4be12e2305e24bf3f24f90b83eb9d42b:457:0:qwerty__5::
u458:$postgres$postgres*51754e71*71049e7f6c19adc774c452109f14170f:458:0:qwert12345__5::
u459:$postgres$postgres*7a667a75*8b37e82678eda377cb5f46254be36cd6:459:0:!!!!!!!¡!ß_2::
u460:$postgres$postgres*534b544f*4a35c62365d5ec793a888b3a84b8ae27:460:0:12345__5::
u461:$postgres$postgres*6c7a5530*bdf85b87e23a1da60c9c8f427d6a5c68:461:0:12qw34er__5::
u462:$postgres$postgres*45665072*496892d8e32b0444d3e4fb50dc2dc491:462:0:johnripper__5::
u463:$postgres$postgres*526f6e6d*233ddd550cec481c3817dd29aea1a735:463:0:ôtttttôtttt__2::
u464:$postgres$postgres*38366d4e*da718dd4d54921ba6cc0a85bc41fbf54:464:0:letmein__5::
u465:$postgres$postgres*76346d64*1079167cd269aaa65ca67a1e619c77ff:465:0:trustno1__5::
u466:$postgres$postgres*41505530*6a40266b81749d031c329172d7cacc36:466:0:sppooky__5::
u467:$postgres$john*56763156*fcee4a6f04eebaa555133d08214d5c02:467:0:äffffffffæfæfß_2::
u468:$postgres$postgres*394d7932*74a5df332c73bbfba67cf8374ea26bc3:468:0:gobble__5::
u469:$postgres$postgres*38746f72*bb82d5c47624918821a599103ef92767:469:0:summer__5::
u470:$postgres$postgres*30673537*462d468ead13440b11c4dab560fa2e2a:470:0:qeòwt_ß²::
u471:$postgres$postgres*6d6d6d53*3198eff4dd6d134e7c4e97cd91adaed9:471:0:aksarban__5::
u472:$postgres$postgres*53516179*a60e83a27af86a8ed80d0df14781a5c6:472:0:qwerty__²::
u473:$postgres$postgres*3257434c*da788a3ecf0ababe0664301d4a584718:473:0:johnny__5::
u474:$postgres$postgres*7a4f4f31*01337f5cfaf31bcc7d488cf9bc3cc3a3:474:0:admin__5::
u475:$postgres$postgres*304c5672*a8c20565500ac9d04f67a1119e1e22ec:475:0:password1__5::
u476:$postgres$postgres*486c456b*1cb76ce5349dfa826df87ed6b9776528:476:0:Password1__5::
u477:$postgres$postgres*736c4f68*265d7de23a0289d313528711103d7120:477:0:letMein__5::
u478:$postgres$postgres*4b53574b*6ff77b999925b74784e2622b68dfdd10:478:0:HookFish__5::
u479:$postgres$postgres*4c4c4b6e*e021d72400b9b4e4a7ab90e24b9e9ec2:479:0:qwert123´5__2::
u480:$postgres$postgres*4f746831*980c8ec1ca88b93d451d114e391b3d97:480:0:±23´5ß_2::
u481:$postgres$postgres*45347242*3350fd6f95e3c2954b6902e507bcd4da:481:0:Swordfish__5::
u482:$postgres$postgres*416b7766*65c48ca7160e8c1ed028ec6e1171be68:482:0:swordfish__5::
u483:$postgres$postgres*53504165*a0827e3f88999679d7d0395144ac79de:483:0:limiey__5::
u484:$postgres$postgres*71465676*d03a7ad0b80599f851b35a3fa1088db0:484:0:12q÷34er__²::
u485:$postgres$postgres*4a483853*5de1586db5bc8dc59865998c103ce9c0:485:0:asdfasfga__5::
u486:$postgres$postgres*5a5a6561*a34c75c20e06f4ef27763064999413f2:486:0:flasjkdfw__5::
u487:$postgres$postgres*6d334261*fed1d1627d4e30bb2457d326d6a981c2:487:0:letmåin__2::
u488:$postgres$postgres*47786543*9c6edb03f7054fff27eaf9e0086a39cc:488:0:%72haba*(__5::
u489:$postgres$postgres*35316c6f*55468cf95edbbed1234b1da2ec8be885:489:0:ôruótno1__2::
u490:$postgres$postgres*72484254*4140c0ef0b6dbd1c342b73165fffa507:490:0:start123__5::
u491:$postgres$postgres*4e727039*7091d1fe8b37472a5a792ffbc7c6833e:491:0:start1__5::
u492:$postgres$postgres*76334f71*f84afeac7635ec1a8263506cacde1802:492:0:start12__5::
u493:$postgres$postgres*6f7a6e57*76e736af39350cef192da48448c6af7c:493:0:gïbble__2::
u494:$postgres$postgres*6e433547*d043213fa8bb6c6070cce441501973f1:494:0:bumprump__5::
u495:$postgres$postgres*69363855*19abcada2d567d40bbb94222ec3cbf80:495:0:sõmíer__2::
u496:$postgres$postgres*74364473*a8f6a516ef9408397afc2eace2641f4b:496:0:pentium__5::
u497:$postgres$postgres*524b4268*4594840c9e5b99db102e63f2ef094918:497:0:johnny_ß2::
u498:$postgres$postgres*3343486e*da315bf354027688687d793b78286715:498:0:PIII__5::
u499:$postgres$postgres*7a485842*d68821ccbd073572d1fdad81c5f4bf77:499:0:permit__5::
u500:$postgres$postgres*754a4451*f3f7bdf578d3bd309a7bd53634aeb5f4:500:0:ReplyNow__5::
u501:$postgres$postgres*46704947*a0369daa1929e7a8bbc1d62c782a450d:501:0:paóswïrd1__²::
u502:$postgres$postgres*637a5550*3294ef9c8b5de1cc1f70a5b9bcdc0881:502:0:BBSPw__5::
u503:$postgres$postgres*50434263*586ba7e98889b4e1326d5a68ac5b880d:503:0:Password1ßß2::
u504:$postgres$postgres*57574e6b*31f7cead97833b395a4d49c1d94ee69a:504:0:GoldenLight__5::
u505:$postgres$postgres*79656250*7b52e8b7554b6aa4bef6d0bd59b826f7:505:0:leôMein__2::
u506:$postgres$postgres*4d714533*77cd3a5f2549414c32a0ec388a08fc19:506:0:Rejectme__5::
u507:$postgres$postgres*6d584245*be9105c93e8ebfd393e3cf7b4bcdde19:507:0:susans__5::
u508:$postgres$postgres*43547649*14d68bb6840d8dae22502fb1dc25f77b:508:0:late&*night__5::
u509:$postgres$postgres*646a6d6d*8378de6433f0c7203d99cfc6291f7803:509:0:HooëFióh__2::
u510:$postgres$postgres*4a4c5350*de7bb57ee8fb8f60389e16bca03435a9:510:0:Dec 18, 1992__5::
u511:$postgres$postgres*756d7645*164f2c90d47953ee8c9912805f327665:511:0:Wellington__5::
u512:$postgres$postgres*74495031*53daf1f3bf26c920fec3826db3f63148:512:0:t00nv1ll3__5::
u513:$postgres$postgres*534f5847*e883d6115bae90a0c7f16338e99b6273:513:0:Bert&Ernie__5::
u514:$postgres$postgres*784b5764*2f6db70280e1a63da4a7eb13ce2f0699:514:0:Dragonquest__5::
u515:$postgres$postgres*42365946*aea69b7d851db8cb61efc701e077a6ec:515:0:inkjet__5::
u516:$postgres$postgres*5a6a3444*8ea29950420b9cbfd2d69f3edb1319eb:516:0:jamestkirk__5::
u517:$postgres$postgres*627a4663*04b2bae4cb4ca7f19d10715ac8aaa882:517:0:Swordfióhß_2::
u518:$postgres$postgres*506c5269*df7561fc567b7f53219f2d7ac6a7b67b:518:0:X-files__5::
u519:$postgres$postgres*6f545362*9002fd47cf8d49a0ea70795882e97f75:519:0:boneheadded__5::
u520:$postgres$postgres*59354b36*e8399577ba11b18cbac9da5a1cbda1d6:520:0:justmysize__5::
u521:$postgres$postgres*6e326d4c*52880188660c36beed83929aa34a415b:521:0:outleft__5::
u522:$postgres$postgres*79665852*d72cb0009f66e90eff8d2406e12a059b:522:0:hhello__5::
u523:$postgres$postgres*6c457847*060be5ae81abb6aba5fcc311e5d1439d:523:0:enterNow__5::
u524:$postgres$postgres*4a364a67*09d9f8125d87405d5e9fd363916c4d07:524:0:IwasJu$there__5::
u525:$postgres$postgres*67545a36*766e6c683105b03450a341b03f50f606:525:0:DOGBERT__5::
u526:$postgres$postgres*6e374637*45a6e85d397df67c43319f6a7d6d6458:526:0:fukOFF__5::
u527:$postgres$postgres*68584f79*d66af1432e586f5ac8048011abcdc025:527:0:develsdue__5::
u528:$postgres$postgres*366d7030*18ef7771dce76ea98e977e3fa6ca691e:528:0:swordæish__²::
u529:$postgres$postgres*756d3645*2cf7537af8a40eeaa83fab48e27a93fd:529:0:bartlby__5::
u530:$postgres$postgres*394d7a79*fe52ba8dd02ee50e34884fc026980c8d:530:0:ìimieù_ß2::
u531:$postgres$postgres*744f4d34*f7d9a77ff007f89ebf281c9f141cf2c0:531:0:ásdfásfga__2::
u532:$postgres$postgres*56655255*9288d5a5283411bd07e21bc26b162e92:532:0:characters__5::
u533:$postgres$postgres*654e4f4e*8a6a557a82cc7cabae3025b432b0df21:533:0:good to KN0W__5::
u534:$postgres$postgres*30484576*f7f97fc9757f301afb74be63071ebf97:534:0:flasjkdf÷__2::
u535:$postgres$postgres*776d5766*09dcfa1ee18f49c262a18cff63ff861d:535:0:%72èabaª(__2::
u536:$postgres$postgres*7656436d*cdf5c94d7dbf1763c413165c8ea7d2b8:536:0:start1²3_ß2::
u537:$postgres$postgres*63706c46*7102cdca8b201824d2e01963745e846f:537:0:1__6::
u538:$postgres$postgres*304b4232*784974116952daa268b3bfdc6e72891a:538:0:password__6::
u539:$postgres$postgres*63614152*1bbbebbbf4a4400344554f143c0dddd1:539:0:test__6::
u540:$postgres$postgres*4a337132*944e2c6210c4773e3a2dcd2099e7f73d:540:0:hello__6::
u541:$postgres$postgres*77504854*9c2f3fe1568da3c5930e4e7bad5130a9:541:0:Skipping and& Dipping__6::
u542:$postgres$postgres*44367865*713213f35b41e048d687b417f971326f:542:0:!!!!!!!!!__6::
u543:$postgres$postgres*4d436c70*95a0aed85afb94204da9c1e6c480ef2d:543:0:ttttttttttt__6::
u544:$postgres$postgres*6f37584a*eac578b10efc7f6f9429aa1280b763da:544:0:dffffffffffff__6::
u545:$postgres$postgres*3565585a*fb20fec3a36f80ebc3a51e6b6e0d2853:545:0:alsfdkja;__6::
u546:$postgres$postgres*79547832*9a3b4cb9a0474f1bd3d9c45f0b42e7cf:546:0:start12_ß²::
u547:$postgres$postgres*4170686f*42a82592650f3cd65b88f1b64fbd8a6b:547:0:qerwt__6::
u548:$postgres$postgres*37494235*a026b4f2b86cee0fe701f7ac53891ab6:548:0:qwerty__6::
u549:$postgres$postgres*66587066*21db0cee13ff771f5eb28b4535a74d03:549:0:qwert12345__6::
u550:$postgres$postgres*68524b61*1abc791336b2d03b24d8dbe88c5b7f56:550:0:12345__6::
u551:$postgres$postgres*5331656d*78274dd72b63baa38d13bd3621fad44b:551:0:penôiumß_2::
u552:$postgres$postgres*34304a43*3db2e543d80f9ea2b25c805c0b7c854e:552:0:12qw34er__6::
u553:$postgres$postgres*3159696f*199aaaa2b58ed95a0931acd14ca99fcf:553:0:johnripper__6::
u554:$postgres$postgres*5336374c*6758c10a7b6d1d774d97bff83115fdb4:554:0:letmein__6::
u555:$postgres$postgres*64534a49*0fae9ebd4b091c34703d7ff146637543:555:0:trustno1__6::
u556:$postgres$postgres*52705132*b34095397999019b3526c79d40f7a942:556:0:sppooky__6::
u557:$postgres$postgres*64455866*9f235546134adab92958ce465acb0867:557:0:ÐIII__2::
u558:$postgres$postgres*4849524e*0b67b0476f11d50fd47f66abf3f1b1fa:558:0:gobble__6::
u559:$postgres$postgres*35756258*4000bb280643429bf3e1a71a882fbf6e:559:0:summer__6::
u560:$postgres$postgres*58434f4d*68e67f014e55eca64bdf8ca3e26d6563:560:0:aksarban__6::
u561:$postgres$postgres*34765463*920325e88185e3078846bd56964e0d14:561:0:johnny__6::
u562:$postgres$postgres*4a536877*3d7410262d37790bc41b6195bdaa241c:562:0:admin__6::
u563:$postgres$postgres*59533662*93a4b760d56d2a2df215e9c0ccea544e:563:0:password1__6::
u564:$postgres$postgres*3542556d*6f9d7297a4d4397990f623b1967acfc1:564:0:Password1__6::
u565:$postgres$postgres*70644772*da901c9daf3c7c4c222beb3d3e03c31c:565:0:letMein__6::
u566:$postgres$postgres*69514262*d3b2d966eb59fda9f3d2b8754edafcd1:566:0:HookFish__6::
u567:$postgres$postgres*4c4d6243*265e9f11c836de42bffefd381a53f3c1:567:0:Swordfish__6::
u568:$postgres$postgres*75337454*3d9ac746bb972aa6f7950c702b2ba704:568:0:swordfish__6::
u569:$postgres$postgres*6543534f*878bd3dbfab11f47fe5c0ce47c43fc41:569:0:limiey__6::
u570:$postgres$postgres*59445337*b0945af62ed5bbebb235c35a3145db60:570:0:asdfasfga__6::
u571:$postgres$postgres*55515755*9f09628384ef7481b3450d7a00d8c999:571:0:flasjkdfw__6::
u572:$postgres$postgres*39696a4b*9be5cfd16fc4cc68d5a88735ffad31d9:572:0:%72haba*(__6::
u573:$postgres$postgres*75567138*801f9d633e51c3d0c3bb3bda3e253f90:573:0:start123__6::
u574:$postgres$postgres*55793250*889fc905085745ba05c9b14921314901:574:0:start1__6::
u575:$postgres$postgres*71783265*125c8646a7ffe9e65b462754f47ab528:575:0:start12__6::
u576:$postgres$postgres*6c5a3674*cfb08a84bdfdf91374efcc6f21a6938c:576:0:peòmit__2::
u577:$postgres$postgres*6a35626a*bd337c055afcdfb80fc264ba3af4d771:577:0:BBSP÷__²::
u578:$postgres$postgres*644d5073*028164a7d29fcfbc236c5d9a1fef3978:578:0:bumprump__6::
u579:$postgres$postgres*65777a6e*7cad910c07d3a3754a8b54435b217240:579:0:pentium__6::
u580:$postgres$postgres*30504b62*f3bab934981a17c6f4582860a9b6b456:580:0:PIII__6::
u581:$postgres$postgres*50634167*b5d13ef52e2c090827d99c4cc71ee8a4:581:0:permit__6::
u582:$postgres$postgres*4c466136*d3e67b677ae6872b7150baa48d214f92:582:0:ReplyNow__6::
u583:$postgres$postgres*5a4d4b44*651e4b99d1ca91dc59d68f7c6a5d56c9:583:0:GoldånLigèt__2::
u584:$postgres$postgres*4f365a65*df1515f16b2d23865390e6d0cae50dd7:584:0:BBSPw__6::
u585:$postgres$postgres*45667051*d4f8e6822265f484d5e479f19e145537:585:0:Òejeãtme__2::
u586:$postgres$postgres*527a5848*9005e038030fbfb2986377ccf3b56699:586:0:GoldenLight__6::
u587:$postgres$postgres*77495a51*88eae46c80681ba366dac7dcbd6ffbdf:587:0:Rejectme__6::
u588:$postgres$postgres*5a31324e*2dd7f28788630ecde85dc3e3fbee5c81:588:0:susans__6::
u589:$postgres$postgres*70476b62*6afba8e64bcfe408ed0968b26f60af2d:589:0:late&*night__6::
u590:$postgres$postgres*6e634970*f8e1c536313fb5a1e66a1112f02581a2:590:0:susáns__2::
u591:$postgres$postgres*45346536*3fb51544bc608910db43d7a57e85b279:591:0:láte&*night__2::
u592:$postgres$postgres*6f575741*a59921891c99ac8b1ad302dffc443477:592:0:Dec ±8¬ 1992__2::
u593:$postgres$postgres*5a41485a*7c6592cc381e5f4a4523f6880fb7fd06:593:0:t00nv1ll3ß_2::
u594:$postgres$postgres*6e4d684c*50d56d82a8aabf9976dce06bc69ac399:594:0:Dec 18, 1992__6::
u595:$postgres$postgres*4d633530*c99ee2e12a8551717181210d1fa80df0:595:0:Wellington__6::
u596:$postgres$postgres*31595634*4531613e1279f0757306aae3f576cc7e:596:0:t00nv1ll3__6::
u597:$postgres$postgres*6b724c52*02da7cc9618d0bd993ec13c6e442de49:597:0:Berô&Ernie__2::
u598:$postgres$postgres*43507831*15954668c80e9b4f64219a0e6092c6b9:598:0:Bert&Ernie__6::
u599:$postgres$postgres*4f655868*5281342d8928fbfa278eee3a0bccc1f3:599:0:Dragonqõest__2::
u600:$postgres$postgres*6f465a45*7eae52dc4e7a0bee23953ab4c352cb8d:600:0:Dragonquest__6::
u601:$postgres$postgres*344b354c*8d840c76f1c09bed5acdd376dfd353bc:601:0:inkjet__6::
u602:$postgres$postgres*56353573*4545eb4587d227f4e6277d3a51d187af:602:0:jamestkirk__²::
u603:$postgres$postgres*58396b6e*d0c3a5ab882c6009559dcdd43025b3bd:603:0:jamestkirk__6::
u604:$postgres$postgres*624e7051*b5cf0a50c63e176f389b2894a055d1d8:604:0:X-files__6::
u605:$postgres$postgres*64563454*b92e48329e88a74ca68b58cd8badcb59:605:0:boneheadded__6::
u606:$postgres$postgres*484a3045*c4552a28b68b1ed18034b94c5411fbcf:606:0:justmysize__6::
u607:$postgres$postgres*4b485a62*c4f7e5d9bcf15a648aee8c5da364a3d7:607:0:X-fileó__2::
u608:$postgres$postgres*3163566d*824bdf0b0e13658e73e8f6366b53d450:608:0:outleft__6::
u609:$postgres$postgres*43765254*1c03ac1be31c04adf555cebe9b74f32d:609:0:bonåhåaddeä__2::
u610:$postgres$postgres*396c6d4d*a689fd64cb5a0bf0957e521e708772cd:610:0:hhello__6::
u611:$postgres$postgres*664a4b30*552363fe27b2d35b347ba88ff4bafaf6:611:0:enterNow__6::
u612:$postgres$postgres*4f6c5744*0a58e5c111f5351920e51422e751f824:612:0:IwasJu$there__6::
u613:$postgres$postgres*6238505a*6ea3a543b2c99449c78b9773e1882641:613:0:DOGBERT__6::
u614:$postgres$bin*72323144*ef8308484ed79d0cb77284518cef0d7f:614:0:fukOFF__6::
u615:$postgres$postgres*6f524466*72b75a226c37be2f2fa167704dd38da1:615:0:develsdue__6::
u616:$postgres$postgres*68536151*6f5fb1e8e2a94e20729c750cbd4c4958:616:0:bartlby__6::
u617:$postgres$postgres*68797978*97bd617740538d32a7f2dad4f367ead3:617:0:characters__6::
u618:$postgres$postgres*4158564e*e79ccc0753d410290949ad96bd7d1b02:618:0:good to KN0W__6::
u619:$postgres$postgres*676e5157*38ef9df229dc944a2284611b628bb7be:619:0:justmysézå_ß²::
u620:$postgres$postgres*4e674d4c*c596d80bfbf165c8bbc823d95e676d12:620:0:1__7::
u621:$postgres$postgres*75366461*cbd06c222307689eda16cea7f3d4d8fb:621:0:èhello__2::
u622:$postgres$postgres*48375451*c095a517310dc46e2c1e3e8383c4341d:622:0:enterÎow__2::
u623:$postgres$postgres*6d595064*09b26d35cb3f973f6f87758af3afe176:623:0:password__7::
u624:$postgres$postgres*324f486f*a07e70bd8c6ebf403fddd167d2b3ea7c:624:0:test__7::
u625:$postgres$postgres*794d6c4e*bcc0ff8d622c636dc30e3311f648e890:625:0:IwasJõ¤theòe__2::
u626:$postgres$postgres*496a7665*3fbce3e148c2a12acda1ae046c8428fa:626:0:hello__7::
u627:$postgres$postgres*77377269*b10ace994d5e881ccf39ddd34de6d98e:627:0:Skipping and& Dipping__7::
u628:$postgres$postgres*365a5369*cd2b495fac3bc8ce665b93ecc4821dc7:628:0:DÏGBERT__2::
u629:$postgres$postgres*30514b64*8bfb6e622e6a5ec65e59dbc490af8c13:629:0:!!!!!!!!!__7::
u630:$postgres$postgres*39617774*7130aee0f5dd5154b28b6480736704cf:630:0:ttttttttttt__7::
u631:$postgres$postgres*4c476442*7fdbfe7a36402ed5d14ee6f01ee40357:631:0:dffffffffffff__7::
u632:$postgres$postgres*66336153*a6cafef3cc05be92404ca357f864bf48:632:0:alsfdkja;__7::
u633:$postgres$postgres*4e4c4e49*e324039034f76305d8360e2a2841eb33:633:0:qerwt__7::
u634:$postgres$postgres*65487443*717d998d6a53fe95c4f0e7361ee6a410:634:0:qwerty__7::
u635:$postgres$postgres*77566e72*53fd6cf0a7adbbac4378454688eec7b3:635:0:qwert12345__7::
u636:$postgres$postgres*764a376c*157acc0f21092c7c4fb7bce832dbc26d:636:0:12345__7::
u637:$postgres$postgres*35316d57*56bbe3ec8e77ec327bbdd49c9b5e205f:637:0:12qw34er__7::
u638:$postgres$postgres*37373968*ab12ef01905ab7e2798c6368e79935bb:638:0:johnripper__7::
u639:$postgres$postgres*4b327a64*dac6ecd4a297555c645f7f6a4c45a08f:639:0:fõëOFF__2::
u640:$postgres$postgres*66414449*16b2240df08e29657c3d4fb5afdf377c:640:0:letmein__7::
u641:$postgres$postgres*6e4a3961*7b18a04cbcb7f85b3da99fdf315cbccd:641:0:trustno1__7::
u642:$postgres$postgres*72353964*a5cc057b077cf4301b91fa15ee2cd6f0:642:0:sppooky__7::
u643:$postgres$postgres*7871544c*8260b2e146598f76ff6bb8065795f24f:643:0:gobble__7::
u644:$postgres$postgres*49664c79*7ec0c3c5bb35ba94b9583d89a34d93ae:644:0:summer__7::
u645:$postgres$postgres*42347466*519c845aa0baa758f1fdee8d7dd28dcf:645:0:devålsduå__2::
u646:$postgres$postgres*706d4e53*c37f2dead74ed1382571fd9a3b93e39f:646:0:aksarban__7::
u647:$postgres$postgres*4263714e*8d5aad850fba355ad77ff0502d2de152:647:0:johnny__7::
u648:$postgres$postgres*4242324b*c735fefdcd7d217dff765fa3ae6b73fe:648:0:barôlâù_ß2::
u649:$postgres$postgres*52584148*688488c84a30430131ed04919df3f2d2:649:0:cèaracteòsß_2::
u650:$postgres$postgres*4a463445*b47ab856e5477faf722d43ccfa1c19a2:650:0:admin__7::
u651:$postgres$postgres*46556e71*0761e7fd12d915435f523f33c21f44f3:651:0:password1__7::
u652:$postgres$postgres*68584641*6f4ce8de0640473d4a37fdf1e874d7de:652:0:Password1__7::
u653:$postgres$postgres*4731524a*68d5c224a17a83023eb410ca85adcaa0:653:0:letMein__7::
u654:$postgres$postgres*50374c34*ca551329938403f00ec6d5dced497a29:654:0:HookFish__7::
u655:$postgres$postgres*526b425a*a22ee3eaaf5e99732ba289bdcb5e6350:655:0:Swordfish__7::
u656:$postgres$postgres*64453759*a3b074ec1e4572e2ce61843854a66ce5:656:0:swordfish__7::
u657:$postgres$postgres*704d4a59*6f70cd040777ed513be4409a407b50fc:657:0:limiey__7::
u658:$postgres$postgres*6e485452*4194649ac0d923e74d5c19b647bdfcf0:658:0:asdfasfga__7::
u659:$postgres$postgres*734d3238*88d42e7d1a88c1357231f5523cad1e11:659:0:flasjkdfw__7::
u660:$postgres$postgres*43735771*25609139e102c99c32a6dea994a9bd72:660:0:gooä to KÎ0W_ß2::
u661:$postgres$postgres*495a586a*b2c6eac6fe36fe84614c60ca4ebde68c:661:0:%72haba*(__7::
u662:$postgres$postgres*5874504c*c9d2d453355387278ada779ca900eb8c:662:0:start123__7::
u663:$postgres$postgres*4571666f*e10a9058d4fea2e989c70684ff5f5d12:663:0:start1__7::
u664:$postgres$sevench*70363162*b12ac7389ac32e0f79b4f5e560e6d626:664:0:start12__7::
u665:$postgres$postgres*354c346e*b573a89485839c6140c889f5f56c1cdd:665:0:bumprump__7::
u666:$postgres$postgres*70367939*02c5478e7b1ba61fba6dadff068c24a6:666:0:pentium__7::
u667:$postgres$postgres*6a6c3439*d73ab009da3da79ca4ee9c36b49c62a3:667:0:PIII__7::
u668:$postgres$postgres*73734d33*70dd79ef5bc19a0b6520dea4b8aca6ca:668:0:permit__7::
u669:$postgres$postgres*70537739*cebb489e0c552168fab37ab4413ea9e5:669:0:1ß_3::
u670:$postgres$postgres*73737456*a7417e61b721c1d05e63d9a73572b296:670:0:ReplyNow__7::
u671:$postgres$postgres*734b5a6a*a84df20774c3056924a67c14e6b13315:671:0:BBSPw__7::
u672:$postgres$postgres*6855465a*eab1dd0eff1dde14097c080cc28281c4:672:0:GoldenLight__7::
u673:$postgres$postgres*5077744f*fb9823e5c0633a15c0eb529da2e7a92e:673:0:Rejectme__7::
u674:$postgres$postgres*52516d35*c121c7bef8f34bf0458d2fdcc6ab0247:674:0:susans__7::
u675:$postgres$postgres*53467162*b98d33c0a79ec2278be0226dce88f9db:675:0:late&*night__7::
u676:$postgres$postgres*48505232*ae13c6e78f601b0545a46a10ac9b1ec0:676:0:pasówordß_3::
u677:$postgres$postgres*76536172*7d7bca8a926180bac8d59d70357ddb52:677:0:Dec 18, 1992__7::
u678:$postgres$postgres*4c705036*8c1a65dbf17de5fd8b201b8c73a1cd76:678:0:Wellington__7::
u679:$postgres$postgres*75687466*d58629031c4ed3a2e2a6faf3da7e83a5:679:0:t00nv1ll3__7::
u680:$postgres$postgres*4a654b50*8f86ef79fd2d9d791304791f3c1c03e3:680:0:helloß_3::
u681:$postgres$postgres*65735969*386e340d61978437a215cfad4f337783:681:0:Bert&Ernie__7::
u682:$postgres$postgres*30757542*eba72dba81d92fa8804ef69ecc20a246:682:0:Dragonquest__7::
u683:$postgres$postgres*74506453*1baeaaabddd5dc6324e31776fc183f85:683:0:inkjet__7::
u684:$postgres$postgres*6f556842*964521a6bf877768220fc992d91c95cb:684:0:jamestkirk__7::
u685:$postgres$postgres*7a494a44*2264f1e9c73e8d06e6d82415c161e308:685:0:Sëipping aîd& Dipping_ß3::
u686:$postgres$postgres*706f5772*44f8b41a35fafd8acefcf11948ca9c62:686:0:X-files__7::
u687:$postgres$postgres*376e3476*019c01ab5d42c35967c69982e1b846b0:687:0:boneheadded__7::
u688:$postgres$postgres*6e54414f*65503a71dc54e4ee361c369bb742ea67:688:0:justmysize__7::
u689:$postgres$postgres*47776b54*f2018ccf996b4e9cbc20a8d51586257c:689:0:outleft__7::
u690:$postgres$postgres*526d6234*01d528e93bb021c8fd92dc07f2751edb:690:0:hhello__7::
u691:$postgres$postgres*4c4a4554*0169de46bc11d0e992d0f94e7293de3a:691:0:enterNow__7::
u692:$postgres$postgres*72556c63*b44df33284a76162ab49f1ee10608c36:692:0:!!¡!¡!!!!__3::
u693:$postgres$postgres*746f6238*74b74cb6a9f92baff02f1d6cd5883da0:693:0:IwasJu$there__7::
u694:$postgres$postgres*61304253*61e2f9ce91e98485ea972329e7b2e492:694:0:DOGBERT__7::
u695:$postgres$postgres*51516559*b1b8d282b323cbb61147aed422ec3818:695:0:fukOFF__7::
u696:$postgres$postgres*45384631*f3ed0a6a5bd2ff7df11936ab2d200496:696:0:develsdue__7::
u697:$postgres$postgres*774e4534*bf7e12b72f8599db9bc9127758a099c6:697:0:bartlby__7::
u698:$postgres$postgres*78387642*480cf75800e7c651a058aeb19480e805:698:0:dffæffæffffff__3::
u699:$postgres$postgres*704e4d67*c623bdd05f3787807e75398fd0b7c1b3:699:0:characters__7::
u700:$postgres$postgres*6b616b73*f8386565bbb46967d60617e70ed6dbc5:700:0:good to KN0W__7::
u701:$postgres$postgres*31487265*0ac0a3ae91ecd8135c14d410a1add073:701:0:álsfdkêa»__3::
u702:$postgres$postgres*554b6843*745fb56fca50d6b0ce4df8206363336d:702:0:1__8::
u703:$postgres$postgres*50544d67*c18c87404c48813514609594935652ff:703:0:password__8::
u704:$postgres$postgres*76737577*823fbef92afc586b4eb56367552ec3d1:704:0:qeò÷t__³::
u705:$postgres$postgres*78644b66*63da27023361d9662b46120a2a9b7664:705:0:test__8::
u706:$postgres$postgres*4977354b*c45c080b5f53349a5369dce2dd0000e8:706:0:hello__8::
u707:$postgres$postgres*574c4b4f*725ea61f35ea10ac0c46a967304f09a2:707:0:Skipping and& Dipping__8::
u708:$postgres$postgres*4f676b56*711f1460de5343b9043cce217439c079:708:0:!!!!!!!!!__8::
u709:$postgres$postgres*72646a30*3775d74d4cc994d5392a9cd03c5c71c0:709:0:ñwerty__3::
u710:$postgres$postgres*476d6236*9119b5455dbf835a858048c450b1197e:710:0:ttttttttttt__8::
u711:$postgres$postgres*79785546*e22c1fdd2c72b4b7c251ad7cdb5ae8cc:711:0:dffffffffffff__8::
u712:$postgres$postgres*79333879*37f9dba8d4782e26133944222564cb5a:712:0:ñwert±2³45__3::
u713:$postgres$postgres*6155376d*3c9941b4bce5254e67e0f480bec266cd:713:0:alsfdkja;__8::
u714:$postgres$postgres*4f763650*5634ce8c8e324f129f0e201045dcf77e:714:0:qerwt__8::
u715:$postgres$postgres*49346b4d*a604c2ae8c26de80a674e527f71adc90:715:0:12³45__3::
u716:$postgres$postgres*38565a4c*febcd4c60cadd6797cdf2ba01d1a0621:716:0:johîripper_ß3::
u717:$postgres$postgres*4f613342*fecb76dc8192bbbab5250eb768595dbe:717:0:qwerty__8::
u718:$postgres$postgres*48685854*92625709f9ab7d0bf765378947da2b95:718:0:qwert12345__8::
u719:$postgres$postgres*55654d43*4def5b244a514ca56db6af887c74c5c8:719:0:12345__8::
u720:$postgres$postgres*306b5242*320def0fda178c7f13297b608501ddae:720:0:12qw34er__8::
u721:$postgres$postgres*46485255*f93bf0766b9bd48ef8d21585ccb046cc:721:0:johnripper__8::
u722:$postgres$postgres*4154666e*b6d1bebe3f3e735a28c53457f89df38e:722:0:letmein__8::
u723:$postgres$postgres*49425862*9f39d7ef8534cac4e5a480ce478ad1c1:723:0:trustno1__8::
u724:$postgres$postgres*616c4e73*279eb5bb3dab98915972b985ecbd95dc:724:0:sppooky__8::
u725:$postgres$postgres*44456b69*878eb9add91fab3d1c0744d71ed3055f:725:0:gobble__8::
u726:$postgres$postgres*356a6e4d*3905a6f41e22c7ee6e19bf0cc7068040:726:0:truótno1_ß3::
u727:$postgres$postgres*35534f58*62965b473139bacc57a4d15b0c4963a2:727:0:summer__8::
u728:$postgres$postgres*42344530*007a575fef000cb5402250658d541621:728:0:aksarban__8::
u729:$postgres$postgres*4c626736*0dc4fd4642640eee51353dbb13c636bc:729:0:sppookùß_3::
u730:$postgres$postgres*73753066*25a8985bf822609dd351291ffd0548b6:730:0:johnny__8::
u731:$postgres$postgres*6c613766*1883128cc4e6399539ae3b727697dc5c:731:0:gïâble__3::
u732:$postgres$postgres*36626e6b*052c85995fe0c07ff54b95ad527a1ecd:732:0:sumíeò__3::
u733:$postgres$postgres*624e304c*3770f2f412256ac564f9fc1278a582fb:733:0:aksarâanß_3::
u734:$postgres$postgres*42705253*4d70c91d867226676371f927054854f9:734:0:admin__8::
u735:$postgres$postgres*554d4246*40fa3e8de722fcb1614949b3188ad29e:735:0:password1__8::
u736:$postgres$postgres*7a755478*2740b08bd1453ceaabacfa5b63c81c1a:736:0:Password1__8::
u737:$postgres$postgres*6d306c75*1bc53ff7e83dd34ab37fdb2f37d57f41:737:0:letMein__8::
u738:$postgres$postgres*6d774b41*7359bbed65d33bc7b3edd8143ec17b0e:738:0:HookFish__8::
u739:$postgres$postgres*51626876*6320cabb7e2ed83ebd58136466d411c9:739:0:johnnyß_3::
u740:$postgres$postgres*5430616b*685ecf668c0e88f08ed89c4638412b1b:740:0:Swordfish__8::
u741:$postgres$postgres*64613964*fa27450124ef9a966b1a10a626772114:741:0:swordfish__8::
u742:$postgres$postgres*56525253*0af39c015b93562c0af822f495e13db2:742:0:limiey__8::
u743:$postgres$postgres*36694675*a049ae7459e63e8c1f33001994a490fe:743:0:asdfasfga__8::
u744:$postgres$postgres*74364c6f*506dac70d5042cebd5dee5c0dca37d02:744:0:flasjkdfw__8::
u745:$postgres$postgres*4e493247*33db99633b5813324ebf785235443b32:745:0:%72haba*(__8::
u746:$postgres$postgres*38456b4a*ee94d6c8f4bee30aa94b8562bd80a351:746:0:start123__8::
u747:$postgres$postgres*59663833*becb04ccfc6d798f95d3359c93f3c30c:747:0:ádmin_ß³::
u748:$postgres$postgres*71756371*16fcec188af5e2b001d79880751ee6a1:748:0:start1__8::
u749:$postgres$postgres*6d625650*d036e815cafbff2fd100fcd003a86438:749:0:start12__8::
u750:$postgres$postgres*376b3670*6c2b1061b4f31905d020345cd2a1b9b3:750:0:bumprump__8::
u751:$postgres$postgres*576b4332*eaa6bdaf696fb6986afa7060b31cdcb1:751:0:pentium__8::
u752:$postgres$postgres*5a6f5565*c0325c6b8078ca9e8f518218e2f8120d:752:0:PIII__8::
u753:$postgres$postgres*344b6b7a*1e50387239ca12220aa95b2338951397:753:0:pass÷ord1__³::
u754:$postgres$postgres*7a676b57*b52478aa09e35dc9915caa10cb87308b:754:0:permit__8::
u755:$postgres$postgres*664c6b7a*e172b4fb9c04a806fde7aa9d1dfdfc81:755:0:ReplyNow__8::
u756:$postgres$postgres*70536d6a*2f0320cfb96fb1757e93bff6de748c6a:756:0:BBSPw__8::
u757:$postgres$postgres*4e564652*996dbe6d8701c498581c9a67fad2f376:757:0:GoldenLight__8::
u758:$postgres$postgres*43754a75*81cc9dcdf75080ac3aaf1c7bee7090e2:758:0:Rejectme__8::
u759:$postgres$postgres*476e6745*13be7336952a2ac6504fdab495688e11:759:0:susans__8::
u760:$postgres$postgres*4a675544*82d3c73714e2cf3b9b95c531d911046d:760:0:late&*night__8::
u761:$postgres$postgres*7a345a78*dcdddc25a4686bd17a8b5a3ec38f50e7:761:0:Dec 18, 1992__8::
u762:$postgres$postgres*32735451*947545b44f389d3a75b0e4bcbd8f6020:762:0:Wellington__8::
u763:$postgres$postgres*6d75416c*0e5f5e09414c4581eb3501d74154c42d:763:0:t00nv1ll3__8::
u764:$postgres$postgres*526d744f*707ef7db38052bf8d71b37089866c8bf:764:0:Bert&Ernie__8::
u765:$postgres$postgres*4a445463*b3c906a3a16ec131c946e1a5b705bcb2:765:0:Dragonquest__8::
u766:$postgres$postgres*67736558*c481039cad7c3e28a7edd4f60a98b65b:766:0:inkjet__8::
u767:$postgres$postgres*42796453*523df668e051fa484e3c13137be7a903:767:0:jamestkirk__8::
u768:$postgres$postgres*30735041*888262969e5f243b2bc9036d005ba79c:768:0:X-files__8::
u769:$postgres$postgres*5459736c*733090fe8a0b4bef3aedaf4c052a6aed:769:0:boneheadded__8::
u770:$postgres$postgres*78616659*3ca663a5f3d925452e0b2e0100bd8ebf:770:0:Pássword1__3::
u771:$postgres$postgres*65686a33*36312d4c19e6e6a57da0d621178cfb59:771:0:justmysize__8::
u772:$postgres$postgres*764c6277*a138bc38e28d737ed8d7a9e7e0270316:772:0:outleft__8::
u773:$postgres$postgres*38507a76*25982b8c51bab4f95bdadb03254cd716:773:0:hhello__8::
u774:$postgres$postgres*304b6a6a*98193780c2682201c4b1cd2a6fe298ca:774:0:ìetMein__3::
u775:$postgres$postgres*49666744*7ee2dfe191b793350b2eac77a3f4e00a:775:0:HïokFésh__3::
u776:$postgres$postgres*7376466d*0d16fb0a44396365b78ce3afe7a11cec:776:0:enterNow__8::
u777:$postgres$postgres*386c3254*d63ee2ae19731fb7024fafd3435d90eb:777:0:IwasJu$there__8::
u778:$postgres$postgres*47314b52*6b5ef4edc55fb0ce65f93faa28f8d0aa:778:0:Swordæésh__3::
u779:$postgres$postgres*39787746*dfa0549fcac73253759c8e88a072f0bd:779:0:ówordæish__3::
u780:$postgres$postgres*43567639*3e2d3217925fef3244ffea5a81065175:780:0:DOGBERT__8::
u781:$postgres$postgres*64613453*8bb1eba851c4ce5b79276113ed273d91:781:0:fukOFF__8::
u782:$postgres$postgres*43397a62*485b18a62af21d5d86522e4a2e5eb901:782:0:develsdue__8::
u783:$postgres$postgres*59786c58*7aacc327bf5bb2d25947ade8b72e0d97:783:0:ìémiey_ß3::
u784:$postgres$postgres*48505a72*80d1883f622c127267d1e0136278970f:784:0:asäfasfga__3::
u785:$postgres$postgres*656b6e41*f20358838db64ac0e991473abcd99eaf:785:0:¥72èaba*(__3::
u786:$postgres$postgres*4c6e4269*803230ce69b9a14b694fee8a43d74f11:786:0:bartlby__8::
u787:$postgres$postgres*4a306c34*cc1794167d7a9321ea50ff0699902deb:787:0:start±²3__3::
u788:$postgres$postgres*52793032*10c34e861ca4a37a76c45451243bba11:788:0:characters__8::
u789:$postgres$postgres*62474432*096af67bf5e2f5d1acb6b9447764e73e:789:0:good to KN0W__8::
u790:$postgres$postgres*31323672*36dc26558be6ff10863faf22cf9599df:790:0:sôart1ß_3::
u791:$postgres$postgres*756d6a43*ce42291578bbef2841912c327129f50d:791:0:1__9::
u792:$postgres$postgres*326f6254*05903dd13bca8f80a4176ea600d1b7da:792:0:password__9::
u793:$postgres$postgres*4a6a6e4d*3df4ad4b5a2c7276c9017b15ca87dc0c:793:0:test__9::
u794:$postgres$postgres*565a3635*f9f3b3b68c2d130a447654c59c91b485:794:0:ótaòt12__3::
u795:$postgres$postgres*4c694c4a*cbc7020cec935e347ce348d0ac502fbb:795:0:hello__9::
u796:$postgres$postgres*784f3577*c4a8c766c90cac96211fb811a56100c9:796:0:Skipping and& Dipping__9::
u797:$postgres$postgres*51567233*d407da0df699cf54a7598a5e18bf77c7:797:0:!!!!!!!!!__9::
u798:$postgres$postgres*47455452*1182969450da2527cd36cc27e1cc6293:798:0:ttttttttttt__9::
u799:$postgres$postgres*52796432*c581ec073588856add2c17e951054aca:799:0:âuíprump__3::
u800:$postgres$postgres*536b6448*5f386e0a7735138d389197b772e4ef56:800:0:dffffffffffff__9::
u801:$postgres$postgres*4a6c6648*007e51f61716ed1dcdd06bba08a3a6bc:801:0:pentiumßß³::
u802:$postgres$postgres*76304833*2769be07cfceebaa7db0723b4a9380df:802:0:alsfdkja;__9::
u803:$postgres$postgres*59773062*0b94ed3c94536821d7200e1c3abfb943:803:0:qerwt__9::
u804:$postgres$postgres*51657771*ad10b21b85245ea16873ae636dab0639:804:0:qwerty__9::
u805:$postgres$postgres*6b793645*7ddd16ea1e65bb60e46b1f6dfc2657bd:805:0:qwert12345__9::
u806:$postgres$postgres*434c396b*072e24399b6e3a8e07115901fc50dc3d:806:0:ÐIÉI_ß3::
u807:$postgres$postgres*48717069*d99cfad5d54479141d0025afb2b9f9e5:807:0:12345__9::
u808:$postgres$postgres*6d664e79*6c2f81d3b2e95d04b02f400addfb1860:808:0:12qw34er__9::
u809:$postgres$postgres*6357556f*705d1282e78e86756d45c2960b44280a:809:0:johnripper__9::
u810:$postgres$postgres*64796b71*71cbacd9937e274e453919b635012f91:810:0:letmein__9::
u811:$postgres$postgres*46583577*31581412837cb95fede09da507fc3f38:811:0:trustno1__9::
u812:$postgres$postgres*77703768*c04d9a4c25a3c64d98a55f6cf8f0a33c:812:0:ðermit__3::
u813:$postgres$postgres*49455557*0a62b333ee50b2ea90cd03a83f1410b0:813:0:sppooky__9::
u814:$postgres$postgres*716a6c54*a3f9186297843d4a88baa7df62819c3b:814:0:gobble__9::
u815:$postgres$postgres*6b696572*d58da486ddb1426ac51c56e5f460b793:815:0:BBSÐw__3::
u816:$postgres$postgres*4f433647*39783ee8df6d30fac83973bb997cec7c:816:0:summer__9::
u817:$postgres$postgres*73384966*a5b347c860f4d3fbeb40aeb1d2352d10:817:0:aksarban__9::
u818:$postgres$postgres*4b774d7a*92e8de69d26c51b009b02ce2b39b7341:818:0:johnny__9::
u819:$postgres$postgres*67493442*50bcfd163324481d849bedd397da2cd9:819:0:admin__9::
u820:$postgres$postgres*79385550*1e2b0ab5dd0acbba694bc9af7c1f5bb3:820:0:password1__9::
u821:$postgres$postgres*51786f52*75203b1ff750842388714393c77651b7:821:0:Password1__9::
u822:$postgres$postgres*59777230*4c0a4e11b7290ded111d6e54d34449c7:822:0:letMein__9::
u823:$postgres$postgres*77437247*83514f3c89b9a0551f3a87a3bd396659:823:0:HookFish__9::
u824:$postgres$postgres*38785a38*c76440dcb01e8ca0c149e5168627af99:824:0:Swordfish__9::
u825:$postgres$postgres*58617978*8368ac174a6404086c8a452516151200:825:0:swordfish__9::
u826:$postgres$postgres*36316937*c257789370d891d2cfc61472cdf9045e:826:0:limiey__9::
u827:$postgres$postgres*4e697877*3d3266f2c9e6d397ea9cfbf9ad82345c:827:0:asdfasfga__9::
u828:$postgres$postgres*64616239*b10a726aee2c3200a8043eaa83092d71:828:0:flasjkdfw__9::
u829:$postgres$postgres*30754656*b661414436c3a301a831bc7b4b639eb6:829:0:%72haba*(__9::
u830:$postgres$postgres*3657784f*84a2264b9e496a2f28930aa83c3a8624:830:0:start123__9::
u831:$postgres$postgres*77326734*457cfa5cb6cb0daede3e9f680df82f2e:831:0:start1__9::
u832:$postgres$postgres*674f4153*1c982601212182458adcb2ebf9e2eec0:832:0:start12__9::
u833:$postgres$postgres*6c653077*0ba0f26c5964e92456c781b693f7cb26:833:0:bumprump__9::
u834:$postgres$postgres*6a383269*8486ae082563104b0ddde3da73d54737:834:0:pentium__9::
u835:$postgres$postgres*376b427a*71c6e3513a931e32fc5126336b9eb71f:835:0:PIII__9::
u836:$postgres$postgres*39766337*958f96f3051077f8b4074ae094b1968f:836:0:permit__9::
u837:$postgres$postgres*4845344a*334b1cf6769d8d9dfab3281813448e26:837:0:ReplyNow__9::
u838:$postgres$postgres*57514e41*d3ef013fd9a4179d46ad58d7c71cd8dd:838:0:BBSPw__9::
u839:$postgres$postgres*32323731*d105a024108afb6c8d352df6371673f5:839:0:GoldenLight__9::
u840:$postgres$postgres*74717a48*bbd2511ae208863bc9bf3ab5935cb982:840:0:GïìdenLigèt__³::
u841:$postgres$postgres*53543875*9b379a9eb75b2732ea551c7581de9447:841:0:Rejectme__9::
u842:$postgres$lexi Conrad*30663152*90ebd827d9d06c75d426bdcc9499bf37:842:0:susans__9::
u843:$postgres$postgres*39667154*38f63ff70fea2a0fffd6e13868f23888:843:0:late&*night__9::
u844:$postgres$postgres*6a467771*ebc5d0a7a2ac34073b525ae5f49bdc0c:844:0:Dec 18, 1992__9::
u845:$postgres$postgres*35454f6d*545601b572e3fd4d2b7ea133d7afa90d:845:0:Wellington__9::
u846:$postgres$postgres*45586544*7026c8b332b6b6dc237c81705a19fca4:846:0:t00nv1ll3__9::
u847:$postgres$postgres*6f356c46*35c1a24cdedcd9af5951d710dd9d1f32:847:0:Bert&Ernie__9::
u848:$postgres$postgres*36494953*91528681e8b96946d1605b594ef118b9:848:0:Dragonquest__9::
u849:$postgres$postgres*46687465*a54cb179b4dc4a6c8eb0ffcab9bdb400:849:0:inkjet__9::
u850:$postgres$postgres*444c5a41*eefdca231d7fa2305299b3877589306e:850:0:Reêectmå__3::
u851:$postgres$postgres*7764346a*94944690e2cb4e76317de3b273f0a642:851:0:jamestkirk__9::
u852:$postgres$postgres*69566d76*ddca798e84736d713ab6768b046acee6:852:0:susaîs__3::
u853:$postgres$postgres*5a58674f*9d8bd5c7371f3f6ac36134c414c61450:853:0:X-files__9::
u854:$postgres$postgres*50505856*8aa241b7927760ed23a2691f0a91d213:854:0:boneheadded__9::
u855:$postgres$postgres*7130354b*c87e0ddc379f5db0e4e636750521e70b:855:0:justmysize__9::
u856:$postgres$postgres*4237424c*a3fbb907b1800587add1a740924fb579:856:0:Dåc 18, 1992__3::
u857:$postgres$postgres*626d5663*1740eff253ded653b71d9a53f3854cac:857:0:outleft__9::
u858:$postgres$postgres*48723277*db2564701996cb1258e35ff86356f882:858:0:Wålléngton__3::
u859:$postgres$postgres*65624e43*a89abcc5cfd6de07b4f8bf8effe78108:859:0:hhello__9::
u860:$postgres$postgres*4d563251*3010a3fdf9fead94c48ab8397e6ccf76:860:0:enterNow__9::
u861:$postgres$postgres*54767979*d27ddb8e437e7713e4812f2326a5a75c:861:0:IwasJu$there__9::
u862:$postgres$postgres*45445268*d50c1ebdd024c9e66bb8c87fc6354a2b:862:0:t00îv1ll3ß_3::
u863:$postgres$postgres*30624d46*5bac0665abe1d9f62509a42d4286a432:863:0:DOGBERT__9::
u864:$postgres$postgres*4c4b4b32*33e320dae5a17a1ea712c7935f20e9c0:864:0:Bert&Ernie_ß3::
u865:$postgres$postgres*716b556d*3fca90e4fb3385bdec90fd051585322e:865:0:fukOFF__9::
u866:$postgres$postgres*704e354f*b102145b040848db451fbe947aafa9c4:866:0:Dragonñuest__3::
u867:$postgres$postgres*4f7a5038*e9778c1159ba3ae42cdb8b9197caa786:867:0:inkêet__3::
u868:$postgres$postgres*6454764f*497f8c17bca5635f2c00571d425b675d:868:0:develsdue__9::
u869:$postgres$postgres*64486561*212f5835a23a4294fe3cc957f928097d:869:0:bartlby__9::
u870:$postgres$postgres*6e645169*69edd11894fa8d0b7e99c02426400de3:870:0:characters__9::
u871:$postgres$postgres*3955474c*beb619480350b3cdee7597fd91cd6eb9:871:0:good to KN0W__9::
u872:$postgres$postgres*74434b4f*0295f70d55a5fc41799dc101903dc90e:872:0:1__10::
u873:$postgres$postgres*4d336b39*0061dac3915a4066040a517dd3dcd76a:873:0:password__10::
u874:$postgres$postgres*74766a61*7fcbe8f14e5c48dcbdb462334d1f1084:874:0:jámestkirk__3::
u875:$postgres$postgres*3872654a*5c8fa6bece7babed4e1485ff8920be94:875:0:test__10::
u876:$postgres$postgres*6e4d7135*7c4924660d5ef2074621a919234ba4ac:876:0:boneheadäed__3::
u877:$postgres$postgres*4776576b*3e2e3d654589750d5ff6144a739bae63:877:0:hello__10::
u878:$postgres$postgres*78317353*1b3f3155abd12fc0362ef37ee78eca33:878:0:Skipping and& Dipping__10::
u879:$postgres$postgres*497a704c*562beeba0c0747e50b3b8e36999e8fe3:879:0:!!!!!!!!!__10::
u880:$postgres$postgres*6e6f3471*6ae44af70e171939304220bfe62d78bd:880:0:ttttttttttt__10::
u881:$postgres$postgres*5a6e4f6b*4137547fee5e76d45005e85450a174e2:881:0:êustmysize__3::
u882:$postgres$postgres*44697057*49fa9cd2e1c578bfe5af8c26909ef21b:882:0:dffffffffffff__10::
u883:$postgres$postgres*62656e35*0d30a790ff4222b91ab1f2f173fc5884:883:0:alsfdkja;__10::
u884:$postgres$postgres*306e6b78*5fde3c121a282c2916b151c58655ae62:884:0:outleft_ß3::
u885:$postgres$postgres*626c3437*6c95768fbaa62e3ee97c807301bbe9ab:885:0:qerwt__10::
u886:$postgres$postgres*71635954*cec664bdac306489e9a71f52d728ee55:886:0:qwerty__10::
u887:$postgres$postgres*70726f31*621f8d5949e308c34ae0d9435e193e27:887:0:qwert12345__10::
u888:$postgres$postgres*72713371*0c325866ae63163458f4e0e1aa59960f:888:0:12345__10::
u889:$postgres$postgres*53447256*6bb33af29e77c108e1e07e954e3b5b85:889:0:12qw34er__10::
u890:$postgres$postgres*4979724f*f9624a941a0756215778662eda9b8987:890:0:johnripper__10::
u891:$postgres$postgres*43794373*ee39dae45d38eb783e285d5b26ea54b4:891:0:letmein__10::
u892:$postgres$postgres*39694237*93040e1b90ab1420c98b306a213d2b8f:892:0:trustno1__10::
u893:$postgres$postgres*6f585070*47fbdfed51edbf67fb397c5b6c0edcbd:893:0:sppooky__10::
u894:$postgres$postgres*4b616d7a*a323b6873b939e03b69ba056b0e8b85c:894:0:gobble__10::
u895:$postgres$postgres*5661506e*be3761211e22b0fe4e7848728a48f709:895:0:summer__10::
u896:$postgres$postgres*6b70564d*714295f2d904c189ceec754f83b3b7b2:896:0:èhelìo__3::
u897:$postgres$postgres*63673745*5ac153414dbcfdd3d1ea8cd9765f2d18:897:0:aksarban__10::
u898:$postgres$postgres*50453639*d54be1e4df005d9d8a16e7a277b52f2e:898:0:johnny__10::
u899:$postgres$postgres*7846426d*77ef7210789952948a5f159378637f9b:899:0:admin__10::
u900:$postgres$postgres*5774474e*b4000c209ac9542f4a70297e2f711f14:900:0:IwasJõ$there__3::
u901:$postgres$postgres*556d354d*e381d51e237e006ad3eba7b1bceab116:901:0:password1__10::
u902:$postgres$postgres*78714374*b44d3eb89a3dc3c0e2124976801b633f:902:0:Password1__10::
u903:$postgres$postgres*43557a6f*29c640ad6b3133a7320c5c8a7bcec98d:903:0:ÄOGBÅRT__3::
u904:$postgres$postgres*79706a6c*c646d33616abecb8c327f573eca5bfcb:904:0:letMein__10::
u905:$postgres$postgres*34573233*f005297c93aaf2d32235d3c8319a40bc:905:0:HookFish__10::
u906:$postgres$postgres*674f677a*be5a8913dcaf9fd770f7ede8b6d1ecf8:906:0:fukOFÆ__3::
u907:$postgres$postgres*36654c4f*e262e80c78739408af24fcdd0e99b017:907:0:develsäuå__3::
u908:$postgres$postgres*354a5871*e39b3bf0649662b4dc21436093ccb9d1:908:0:cháracteòs__3::
u909:$postgres$postgres*394d7047*e7c6e9de06ffc4684868806e33ac3a12:909:0:good ôï KN0×__3::
u910:$postgres$postgres*61315761*9babcf88b68fced533a91f8ff41bd87f:910:0:Swordfish__10::
u911:$postgres$postgres*34626634*18fa583c6880248e40d232449ba1552d:911:0:1__´::
u912:$postgres$postgres*766f4443*0710bf3eda855ca87c1f78f32633056a:912:0:swordfish__10::
u913:$postgres$postgres*744f7735*eb01c187a6b72cf24215a209cdd4bf83:913:0:limiey__10::
u914:$postgres$postgres*43464f32*cd5519f78113cc3c0abd476ffc710a76:914:0:asdfasfga__10::
u915:$postgres$postgres*6a79706f*e3ae9ba6b5b66373e51c733109ad5ac8:915:0:flasjkdfw__10::
u916:$postgres$postgres*49475650*c2f57f104f1e5bfae4a551eb8d31b267:916:0:%72haba*(__10::
u917:$postgres$postgres*4a4c3058*b5b52ad6bd430908f966c5a3433598a7:917:0:start123__10::
u918:$postgres$postgres*48556676*7a4bc093576defd9a38b07ee78fe868a:918:0:start1__10::
u919:$postgres$postgres*666f4158*b5eb8a8a9ee1408b3337f152af986e7e:919:0:start12__10::
u920:$postgres$postgres*686f3851*8113bd37837937d81bf6c0e37664f810:920:0:bumprump__10::
u921:$postgres$eightchr*42643174*97da4fc0cf5688f46181093d3ed45f11:921:0:pentium__10::
u922:$postgres$postgres*6a313977*2cc84bbab624bb0e3d19dd5a24b53a30:922:0:PIII__10::
u923:$postgres$postgres*65375233*ac538635637b90f3278b93216501d74e:923:0:pasóword_ß4::
u924:$postgres$postgres*4e594143*295174e0f970d7d09113d2df0da2aacb:924:0:test_ß4::
u925:$postgres$postgres*65514363*53e781ee877ef17060a87050180c8f10:925:0:permit__10::
u926:$postgres$postgres*63797442*d9ebfd1976468d17426749c42a6dbe0e:926:0:Skiðpiîg and¦ Dipping__4::
u927:$postgres$postgres*5451576a*3ca7152ac48e412e13c7cb7b27cd0355:927:0:ReplyNow__10::
u928:$postgres$postgres*52486133*ab28de82b7d41ef280dbc67cf9203a95:928:0:!!!!!¡!!¡_ß4::
u929:$postgres$postgres*73456b4a*5576e7a84ffee7caa2cee6621a8d8f48:929:0:BBSPw__10::
u930:$postgres$postgres*3632386d*b8401ae57e8d111fe9b2d6f91aad7eb2:930:0:tôttttttttt__´::
u931:$postgres$postgres*6842466f*ebdf7c3d9872992e01d54be7846daaf8:931:0:GoldenLight__10::
u932:$postgres$postgres*4d41674b*addc10c2787f6d8aa624469e7157bcaf:932:0:Rejectme__10::
u933:$postgres$postgres*44443574*bf8eb198f072c6b90cf305e6b1e5f520:933:0:dffffffffffff__´::
u934:$postgres$postgres*6a445948*6829575a91db24ac29ffcc6021df3c22:934:0:q÷eòty__4::
u935:$postgres$postgres*336d364b*6436736c1844711e9548eda411c77ad5:935:0:qwert12³45__4::
u936:$postgres$postgres*52686f54*a675f9b3ffb116aba0ab6f3343b3b399:936:0:susans__10::
u937:$postgres$postgres*68454f43*8651a6ecb96ecaacf227f82bb69fcbe8:937:0:late&*night__10::
u938:$postgres$postgres*56565765*2e7731abfc61d4c155c19cfbb02a66e0:938:0:Dec 18, 1992__10::
u939:$postgres$postgres*77553054*ffd48d1fc10b0387036d2850253d6c04:939:0:1234µ__´::
u940:$postgres$postgres*37316275*06ecaa0ac25f4469591516113ae369ac:940:0:Wellington__10::
u941:$postgres$postgres*35344650*97cfc1c700c2efec6dd6f14f3949d03a:941:0:t00nv1ll3__10::
u942:$postgres$postgres*50444d56*814aa92b5f542a4f28128c6ebedb1011:942:0:Bert&Ernie__10::
u943:$postgres$postgres*7a717551*dbfb40a030130674bab90a434a803671:943:0:Dragonquest__10::
u944:$postgres$postgres*73634148*9a5425d95a45a207eebd012ec8ba4617:944:0:inkjet__10::
u945:$postgres$postgres*37775165*7b92b81dd8ef295d6edb14c5b5f19c78:945:0:jamestkirk__10::
u946:$postgres$postgres*68545361*7ed6908ea83ded6f3f32df65fad0d3b6:946:0:X-files__10::
u947:$postgres$postgres*4a394a49*be9f4e3f48ca10e8959535506bfec073:947:0:boneheadded__10::
u948:$postgres$postgres*58704674*4996b4976e6d403c3ba06f479c5f8b1f:948:0:12qw34åò__4::
u949:$postgres$postgres*4b507063*fcd7dd1c55cf905d8360f98f28edda0c:949:0:justmysize__10::
u950:$postgres$postgres*74584678*eaa3421aaf505f9ff19f31727d09658c:950:0:outleft__10::
u951:$postgres$postgres*51355357*8a27227e2f440730a9d6632a636f0cb8:951:0:hhello__10::
u952:$postgres$postgres*50347167*303e2eb2e538e8bada09e693af300f9e:952:0:johîripper__4::
u953:$postgres$postgres*61355549*4b80a050add3b7cb7e33112945ab4c0f:953:0:enterNow__10::
u954:$postgres$postgres*4a59426f*60ab5b0ccf90f10d7eee0e5954b45e75:954:0:IwasJu$there__10::
u955:$postgres$postgres*49734d56*9b613066bcc726e054ef3d77f6f6db6c:955:0:DOGBERT__10::
u956:$postgres$postgres*3374556c*b423a18c450a4fefe12de8c15d29e06d:956:0:fukOFF__10::
u957:$postgres$postgres*54566663*3b677957b5654eb59567699159837df8:957:0:develsdue__10::
u958:$postgres$postgres*45324653*f517478db102fd392ae46ec934bf6ad7:958:0:bartlby__10::
u959:$postgres$postgres*4a6a7471*374cb6a9ae45a803bd5319513ddf69a4:959:0:characters__10::
u960:$postgres$postgres*43746c76*222c33e7bf30dce386405830448713b4:960:0:letmeiî__4::
u961:$postgres$postgres*6b613236*7d4aa2ee37a4533fb00e7dbe270239ae:961:0:good to KN0W__10::
u962:$postgres$postgres*61597a61*6766d3d5d88aff144b6222d4cbc84bfc:962:0:trusôno1__4::
u963:$postgres$postgres*6d7a7849*5106a91abe652d5b986b69c27f2d8956:963:0:1__11::
u964:$postgres$postgres*61746450*714e2046c705f3b3d2d1469edc5c81c3:964:0:password__11::
u965:$postgres$postgres*774a7647*5991f8806ca8d9e292f892f88f9e3d92:965:0:test__11::
u966:$postgres$postgres*61707358*97f7224180ffe6dc69db45aae31a4fad:966:0:spðïoky__4::
u967:$postgres$postgres*6464426f*b623736b02a2169e0c7ebdaa5ce6e461:967:0:hello__11::
u968:$postgres$postgres*34686f55*c72822487c735657bc0442e470e31c65:968:0:Skipping and& Dipping__11::
u969:$postgres$postgres*4d63424a*d19ae616118d5265e10bcccb31c8690f:969:0:!!!!!!!!!__11::
u970:$postgres$postgres*78564970*5ac912f908df6679e16619f03f8237e9:970:0:ttttttttttt__11::
u971:$postgres$postgres*47464878*0f2c601bd859e2d0d64d1d31a7fea359:971:0:dffffffffffff__11::
u972:$postgres$postgres*7959564a*fcf31e9b853ea42415c7fabdabf7cf3c:972:0:alsfdkja;__11::
u973:$postgres$postgres*77734a63*a9b0368dc0a7d9928d9a3378c3fe4d61:973:0:qerwt__11::
u974:$postgres$postgres*74465a63*61bec74324889cc50b8fd9092d60a9f3:974:0:qwerty__11::
u975:$postgres$postgres*41736668*6e4147976d4578f5ed65aa380a146bd9:975:0:gobbleß_4::
u976:$postgres$postgres*6b575735*521cd4aa29955447b01df3a54dac64ba:976:0:qwert12345__11::
u977:$postgres$postgres*43774255*c0bd74ee287c7a45a775b07b3c24e8d9:977:0:summår__4::
u978:$postgres$postgres*707a4c74*0f6d492db376d896d34cac39d2bb0885:978:0:12345__11::
u979:$postgres$postgres*7646596f*63961082d626efbed3a7c13e422122be:979:0:12qw34er__11::
u980:$postgres$postgres*4b474967*869a31259143933c6b59ac8e08dae585:980:0:áksarbaî__4::
u981:$postgres$postgres*68655456*a525bc8ccc4a4d6e819b21b7eebb7029:981:0:johnnù__4::
u982:$postgres$postgres*384f3276*30fa6fdaf8c628985adcb0f3c1b4becb:982:0:Ðasó÷orä1__4::
u983:$postgres$postgres*6c4c4b34*acf59ed4650635978b198e1b5c3e9694:983:0:johnripper__11::
u984:$postgres$postgres*77353439*2b6219772d2d582a47fa179ef7623512:984:0:HïokFésh__4::
u985:$postgres$postgres*58794562*7002eed4b9a5cfc2ea5ee08c083aefd2:985:0:letmein__11::
u986:$postgres$postgres*4e454a4d*822fe1cc2c814f54437f10e45657f212:986:0:trustno1__11::
u987:$postgres$postgres*76557137*42f22a2eea77a06c9c19a9f8e7728dbd:987:0:sppooky__11::
u988:$postgres$postgres*7737786d*714dc13c8bad1104b0ac3c6d5e7c104d:988:0:gobble__11::
u989:$postgres$postgres*32424f74*ede9668b61d819685ce6e01935fe2b54:989:0:summer__11::
u990:$postgres$postgres*4f6c6474*3a86993803354f3cdf4ae9fcbbba5d85:990:0:aksarban__11::
u991:$postgres$postgres*4e4d617a*cd1da2271982c63e01177a540a33e8a8:991:0:johnny__11::
u992:$postgres$postgres*386a5154*9feae8caa954f94432bc264fe3c515a0:992:0:admin__11::
u993:$postgres$postgres*62446753*d4383024598121690eb206e14b41d3c3:993:0:password1__11::
u994:$postgres$postgres*5a325647*685c6b64467f2546d56cd834f71a6d81:994:0:Swoòdfish__´::
u995:$postgres$postgres*4e6f4151*02e239ff4d163fca41bf1cfb0fbc33a0:995:0:swordfish__´::
u996:$postgres$postgres*66735564*dad24f33be43a9676ab3c495bf049c7f:996:0:ìimiey__4::
u997:$postgres$postgres*41493466*b31ce9b92841a494772b0b0840b17b49:997:0:aódfasfga__4::
u998:$postgres$postgres*6f4b4d30*289717ad0b6fa6ec6f527eb1fc270e1f:998:0:Password1__11::