-
Notifications
You must be signed in to change notification settings - Fork 7
/
CLData.xml
9683 lines (9683 loc) · 307 KB
/
CLData.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<CLData>
<missedConnection>
<user>5177113085</user>
<category>w4m</category>
<city>Chicago</city>
<post>Glenwood ave arts fest - w4m</post>
<time>2015-08-17 13:00</time>
<link>/chc/mis/5177113085.html</link>
</missedConnection>
<missedConnection>
<user>5176836579</user>
<category>w4m</category>
<city>Chicago</city>
<post>Rick we met this weekend - w4m</post>
<time>2015-08-17 10:49</time>
<link>/chc/mis/5176836579.html</link>
</missedConnection>
<missedConnection>
<user>5176800533</user>
<category>w4m</category>
<city>Chicago</city>
<post>Chad where are you sexy - w4m</post>
<time>2015-08-17 10:32</time>
<link>/chc/mis/5176800533.html</link>
</missedConnection>
<missedConnection>
<user>5176450459</user>
<category>w4m</category>
<city>Chicago</city>
<post>Lucia and Roundtripper - an unfinished conversation - w4m</post>
<time>2015-08-17 05:54</time>
<link>/chc/mis/5176450459.html</link>
</missedConnection>
<missedConnection>
<user>5176383935</user>
<category>w4m</category>
<city>Chicago</city>
<post>Thank you. - w4m</post>
<time>2015-08-17 01:22</time>
<link>/nwc/mis/5176383935.html</link>
</missedConnection>
<missedConnection>
<user>5176316581</user>
<category>w4m</category>
<city>Chicago</city>
<post>A fool - w4m</post>
<time>2015-08-16 23:15</time>
<link>/sox/mis/5176316581.html</link>
</missedConnection>
<missedConnection>
<user>5176185447</user>
<category>w4m</category>
<city>Chicago</city>
<post>; grapes beneath my feet - w4m</post>
<time>2015-08-16 20:55</time>
<link>/chc/mis/5176185447.html</link>
</missedConnection>
<missedConnection>
<user>5176183386</user>
<category>w4m</category>
<city>Chicago</city>
<post>Saw you in Jewel tonight/Sun. Aug 16/Randall/64 - w4m</post>
<time>2015-08-16 20:46</time>
<link>/wcl/mis/5176183386.html</link>
</missedConnection>
<missedConnection>
<user>5176108012</user>
<category>w4m</category>
<city>Chicago</city>
<post>Park West long-haired, bespectacled, cutie bartender - w4m</post>
<time>2015-08-16 19:40</time>
<link>/chc/mis/5176108012.html</link>
</missedConnection>
<missedConnection>
<user>5175884043</user>
<category>w4m</category>
<city>Chicago</city>
<post>To Rorshach from Skittles - w4m</post>
<time>2015-08-16 16:43</time>
<link>/chc/mis/5175884043.html</link>
</missedConnection>
<missedConnection>
<user>5175837885</user>
<category>w4m</category>
<city>Chicago</city>
<post>to the owner of the 2 chubby cats - w4m</post>
<time>2015-08-16 16:11</time>
<link>/chc/mis/5175837885.html</link>
</missedConnection>
<missedConnection>
<user>5175631245</user>
<category>w4m</category>
<city>Chicago</city>
<post>Wal-mart-no party - w4m</post>
<time>2015-08-16 13:56</time>
<link>/sox/mis/5175631245.html</link>
</missedConnection>
<missedConnection>
<user>5175614071</user>
<category>w4m</category>
<city>Chicago</city>
<post>A few weeks ago at Mariano's - w4m</post>
<time>2015-08-16 13:45</time>
<link>/chc/mis/5175614071.html</link>
</missedConnection>
<missedConnection>
<user>5175599922</user>
<category>w4m</category>
<city>Chicago</city>
<post>A few weeks ago at Mariano's - w4m</post>
<time>2015-08-16 13:36</time>
<link>/wcl/mis/5175599922.html</link>
</missedConnection>
<missedConnection>
<user>5175585750</user>
<category>w4m</category>
<city>Chicago</city>
<post>addison/central hospital - w4m</post>
<time>2015-08-16 13:28</time>
<link>/chc/mis/5175585750.html</link>
</missedConnection>
<missedConnection>
<user>5175227121</user>
<category>w4m</category>
<city>Chicago</city>
<post>you're lovely. i hope you find happiness - w4m</post>
<time>2015-08-16 09:57</time>
<link>/wcl/mis/5175227121.html</link>
</missedConnection>
<missedConnection>
<user>5175141285</user>
<category>w4m</category>
<city>Chicago</city>
<post>awaken - w4m</post>
<time>2015-08-16 08:14</time>
<link>/sox/mis/5175141285.html</link>
</missedConnection>
<missedConnection>
<user>5174919913</user>
<category>w4m</category>
<city>Chicago</city>
<post>I miss you A - w4m</post>
<time>2015-08-15 23:15</time>
<link>/chc/mis/5174919913.html</link>
</missedConnection>
<missedConnection>
<user>5174742291</user>
<category>w4m</category>
<city>Chicago</city>
<post>Saw you on Grand avenue (you wore a blue shirt) - w4m</post>
<time>2015-08-15 19:36</time>
<link>/chc/mis/5174742291.html</link>
</missedConnection>
<missedConnection>
<user>5174666133</user>
<category>w4m</category>
<city>Chicago</city>
<post>Damen Bus heading North- 8/14 - w4m</post>
<time>2015-08-15 18:26</time>
<link>/chc/mis/5174666133.html</link>
</missedConnection>
<missedConnection>
<user>5174664990</user>
<category>w4m</category>
<city>Chicago</city>
<post>RA sushi last night - w4m</post>
<time>2015-08-15 18:25</time>
<link>/chc/mis/5174664990.html</link>
</missedConnection>
<missedConnection>
<user>5174439539</user>
<category>w4m</category>
<city>Chicago</city>
<post>Montrose Dog Beach today - each alone with our dogs :) - w4m</post>
<time>2015-08-15 15:45</time>
<link>/chc/mis/5174439539.html</link>
</missedConnection>
<missedConnection>
<user>5174372252</user>
<category>m4w</category>
<city>Chicago</city>
<post>re: just a thought - w4m - m4w</post>
<time>2015-08-15 14:58</time>
<link>/chc/mis/5174372252.html</link>
</missedConnection>
<missedConnection>
<user>5173669790</user>
<category>w4m</category>
<city>Chicago</city>
<post>You work at my gym - w4m</post>
<time>2015-08-15 08:03</time>
<link>/nwc/mis/5173669790.html</link>
</missedConnection>
<missedConnection>
<user>5173512968</user>
<category>w4m</category>
<city>Chicago</city>
<post>The Guess Who - w4m</post>
<time>2015-08-15 02:34</time>
<link>/nwc/mis/5173512968.html</link>
</missedConnection>
<missedConnection>
<user>5173509698</user>
<category>w4m</category>
<city>Chicago</city>
<post>G.M. - the older coworker I can't stop thinking about - w4m</post>
<time>2015-08-15 01:51</time>
<link>/chc/mis/5173509698.html</link>
</missedConnection>
<missedConnection>
<user>5173462021</user>
<category>w4m</category>
<city>Chicago</city>
<post>Trucker from Tenn - w4m</post>
<time>2015-08-15 00:20</time>
<link>/wcl/mis/5173462021.html</link>
</missedConnection>
<missedConnection>
<user>5163619181</user>
<category>w4m</category>
<city>Chicago</city>
<post>Saying Goodbye - w4m</post>
<time>2015-08-14 21:18</time>
<link>/sox/mis/5163619181.html</link>
</missedConnection>
<missedConnection>
<user>5173126934</user>
<category>w4m</category>
<city>Chicago</city>
<post>You bought me coffee this morning - w4m</post>
<time>2015-08-14 18:21</time>
<link>/nwc/mis/5173126934.html</link>
</missedConnection>
<missedConnection>
<user>5173084148</user>
<category>w4m</category>
<city>Chicago</city>
<post>Cute Guy at Trader Joe's Parking Lot - w4m</post>
<time>2015-08-14 17:50</time>
<link>/chc/mis/5173084148.html</link>
</missedConnection>
<missedConnection>
<user>5173053508</user>
<category>w4m</category>
<city>Chicago</city>
<post>You caught my attention - w4m</post>
<time>2015-08-14 17:28</time>
<link>/nwi/mis/5173053508.html</link>
</missedConnection>
<missedConnection>
<user>5171873772</user>
<category>w4m</category>
<city>Chicago</city>
<post>SAN to ORD on United Aug 9th. - w4m</post>
<time>2015-08-14 00:53</time>
<link>/chc/mis/5171873772.html</link>
</missedConnection>
<missedConnection>
<user>5171869353</user>
<category>w4m</category>
<city>Chicago</city>
<post>Black rimmed glasses at Scout - w4m</post>
<time>2015-08-14 00:44</time>
<link>/chc/mis/5171869353.html</link>
</missedConnection>
<missedConnection>
<user>5171844154</user>
<category>w4m</category>
<city>Chicago</city>
<post>undefinable - w4m</post>
<time>2015-08-14 00:02</time>
<link>/chc/mis/5171844154.html</link>
</missedConnection>
<missedConnection>
<user>5171833632</user>
<category>w4m</category>
<city>Chicago</city>
<post>for Reed Collins (civil war sausage) - w4m</post>
<time>2015-08-13 23:40</time>
<link>/chc/mis/5171833632.html</link>
</missedConnection>
<missedConnection>
<user>5171794872</user>
<category>w4m</category>
<city>Chicago</city>
<post>and on a side note from my earlier post - w4m</post>
<time>2015-08-13 23:09</time>
<link>/chc/mis/5171794872.html</link>
</missedConnection>
<missedConnection>
<user>5171741732</user>
<category>w4m</category>
<city>Chicago</city>
<post>Thinking of me? Miss me? - w4m</post>
<time>2015-08-13 21:46</time>
<link>/chc/mis/5171741732.html</link>
</missedConnection>
<missedConnection>
<user>5171539816</user>
<category>w4m</category>
<city>Chicago</city>
<post>seems fitting you'd come here too - w4m</post>
<time>2015-08-13 19:03</time>
<link>/chc/mis/5171539816.html</link>
</missedConnection>
<missedConnection>
<user>5171436766</user>
<category>w4m</category>
<city>Chicago</city>
<post>you got away, again - w4m</post>
<time>2015-08-13 17:33</time>
<link>/chc/mis/5171436766.html</link>
</missedConnection>
<missedConnection>
<user>5171121415</user>
<category>w4m</category>
<city>Chicago</city>
<post>US Air - w4m</post>
<time>2015-08-13 14:33</time>
<link>/chc/mis/5171121415.html</link>
</missedConnection>
<missedConnection>
<user>5170692804</user>
<category>w4m</category>
<city>Chicago</city>
<post>It's over - w4m</post>
<time>2015-08-13 10:47</time>
<link>/nwi/mis/5170692804.html</link>
</missedConnection>
<missedConnection>
<user>5170596540</user>
<category>w4m</category>
<city>Chicago</city>
<post>Office in aurora - w4m</post>
<time>2015-08-13 10:10</time>
<link>/wcl/mis/5170596540.html</link>
</missedConnection>
<missedConnection>
<user>5170437781</user>
<category>w4m</category>
<city>Chicago</city>
<post>Best buy oswego monday - w4m</post>
<time>2015-08-13 07:57</time>
<link>/wcl/mis/5170437781.html</link>
</missedConnection>
<missedConnection>
<user>5170421499</user>
<category>w4m</category>
<city>Chicago</city>
<post>David - w4m</post>
<time>2015-08-13 07:43</time>
<link>/nch/mis/5170421499.html</link>
</missedConnection>
<missedConnection>
<user>5170285772</user>
<category>w4m</category>
<city>Chicago</city>
<post>open letter to david roback - w4m</post>
<time>2015-08-13 01:34</time>
<link>/sox/mis/5170285772.html</link>
</missedConnection>
<missedConnection>
<user>5170272027</user>
<category>w4m</category>
<city>Chicago</city>
<post>Re: I don't kiss - w4m</post>
<time>2015-08-13 01:13</time>
<link>/chc/mis/5170272027.html</link>
</missedConnection>
<missedConnection>
<user>5170245628</user>
<category>w4m</category>
<city>Chicago</city>
<post>Red Line Addison - w4m</post>
<time>2015-08-13 00:08</time>
<link>/chc/mis/5170245628.html</link>
</missedConnection>
<missedConnection>
<user>5170184151</user>
<category>w4m</category>
<city>Chicago</city>
<post>Target on division-You held the elevator - w4m</post>
<time>2015-08-12 22:39</time>
<link>/chc/mis/5170184151.html</link>
</missedConnection>
<missedConnection>
<user>5160601926</user>
<category>w4m</category>
<city>Chicago</city>
<post>I'd like to forget you - w4m</post>
<time>2015-08-12 21:46</time>
<link>/chc/mis/5160601926.html</link>
</missedConnection>
<missedConnection>
<user>5142139672</user>
<category>w4m</category>
<city>Chicago</city>
<post>Flight from LAX to O'HARE 7/25 - w4m</post>
<time>2015-08-12 19:02</time>
<link>/chc/mis/5142139672.html</link>
</missedConnection>
<missedConnection>
<user>5169027579</user>
<category>w4m</category>
<city>Chicago</city>
<post>Not a Volume at all, just a note - w4m</post>
<time>2015-08-12 10:34</time>
<link>/chc/mis/5169027579.html</link>
</missedConnection>
<missedConnection>
<user>5168718300</user>
<category>w4m</category>
<city>Chicago</city>
<post>WHITE BOY, I was like DAAAAMN!!! - w4m</post>
<time>2015-08-12 06:41</time>
<link>/chc/mis/5168718300.html</link>
</missedConnection>
<missedConnection>
<user>5164561366</user>
<category>w4m</category>
<city>Chicago</city>
<post>Great America Aug 5th - w4m</post>
<time>2015-08-12 05:23</time>
<link>/nwc/mis/5164561366.html</link>
</missedConnection>
<missedConnection>
<user>5168510989</user>
<category>w4m</category>
<city>Chicago</city>
<post>Robert Scherzinger - w4m</post>
<time>2015-08-11 22:30</time>
<link>/chc/mis/5168510989.html</link>
</missedConnection>
<missedConnection>
<user>5168469700</user>
<category>w4m</category>
<city>Chicago</city>
<post>jason you still owe me vodka - w4m</post>
<time>2015-08-11 22:12</time>
<link>/nwc/mis/5168469700.html</link>
</missedConnection>
<missedConnection>
<user>5168490283</user>
<category>w4m</category>
<city>Chicago</city>
<post>Jefferson Park CVS - w4m</post>
<time>2015-08-11 22:08</time>
<link>/chc/mis/5168490283.html</link>
</missedConnection>
<missedConnection>
<user>5168344623</user>
<category>w4m</category>
<city>Chicago</city>
<post>Filmmaker - w4m</post>
<time>2015-08-11 20:01</time>
<link>/chc/mis/5168344623.html</link>
</missedConnection>
<missedConnection>
<user>5168275616</user>
<category>w4m</category>
<city>Chicago</city>
<post>Waiting for Purple Line together - w4m</post>
<time>2015-08-11 19:09</time>
<link>/chc/mis/5168275616.html</link>
</missedConnection>
<missedConnection>
<user>5167887156</user>
<category>w4m</category>
<city>Chicago</city>
<post>Happy Birthday - w4m</post>
<time>2015-08-11 15:13</time>
<link>/nwc/mis/5167887156.html</link>
</missedConnection>
<missedConnection>
<user>5166892213</user>
<category>w4m</category>
<city>Chicago</city>
<post>You are deaf. Sat in my section - w4m</post>
<time>2015-08-11 01:17</time>
<link>/chc/mis/5166892213.html</link>
</missedConnection>
<missedConnection>
<user>5166702263</user>
<category>w4m</category>
<city>Chicago</city>
<post>re: I love your smile - w4m</post>
<time>2015-08-10 21:15</time>
<link>/chc/mis/5166702263.html</link>
</missedConnection>
<missedConnection>
<user>5166642610</user>
<category>w4m</category>
<city>Chicago</city>
<post>Re: Tantra Butterfly - w4m</post>
<time>2015-08-10 20:26</time>
<link>/chc/mis/5166642610.html</link>
</missedConnection>
<missedConnection>
<user>5166630425</user>
<category>w4m</category>
<city>Chicago</city>
<post>missed connection on qwikmeet - w4m</post>
<time>2015-08-10 20:16</time>
<link>/chc/mis/5166630425.html</link>
</missedConnection>
<missedConnection>
<user>5166509435</user>
<category>w4m</category>
<city>Chicago</city>
<post>I love your smile A.B. - w4m</post>
<time>2015-08-10 18:48</time>
<link>/wcl/mis/5166509435.html</link>
</missedConnection>
<missedConnection>
<user>5166429719</user>
<category>w4m</category>
<city>Chicago</city>
<post>daily center attorney traffic court - w4m</post>
<time>2015-08-10 17:55</time>
<link>/chc/mis/5166429719.html</link>
</missedConnection>
<missedConnection>
<user>5166342583</user>
<category>w4m</category>
<city>Chicago</city>
<post>Young Blond guy on Red Line - w4m</post>
<time>2015-08-10 17:00</time>
<link>/chc/mis/5166342583.html</link>
</missedConnection>
<missedConnection>
<user>5165862098</user>
<category>w4m</category>
<city>Chicago</city>
<post>Shinedown concert Indianapolis 8/8/15 - w4m</post>
<time>2015-08-10 13:02</time>
<link>/nch/mis/5165862098.html</link>
</missedConnection>
<missedConnection>
<user>5165804917</user>
<category>w4m</category>
<city>Chicago</city>
<post>Monster's Ball - w4m</post>
<time>2015-08-10 12:43</time>
<link>/chc/mis/5165804917.html</link>
</missedConnection>
<missedConnection>
<user>5165840046</user>
<category>w4m</category>
<city>Chicago</city>
<post>40- something goatee guy on Metra Hanover Park - w4m</post>
<time>2015-08-10 12:41</time>
<link>/nwc/mis/5165840046.html</link>
</missedConnection>
<missedConnection>
<user>5165684225</user>
<category>w4m</category>
<city>Chicago</city>
<post>Dr Mike from the cruise - w4m</post>
<time>2015-08-10 11:53</time>
<link>/chc/mis/5165684225.html</link>
</missedConnection>
<missedConnection>
<user>5177055431</user>
<category>w4m</category>
<city>Chicago</city>
<post>Teddy&Lala - w4m</post>
<time>2015-08-17 12:44</time>
<link>//milwaukee.craigslist.org/mis/5177055431.html</link>
</missedConnection>
<missedConnection>
<user>5176971363</user>
<category>w4m</category>
<city>Chicago</city>
<post>It hurts.... - w4m</post>
<time>2015-08-17 11:53</time>
<link>//milwaukee.craigslist.org/mis/5176971363.html</link>
</missedConnection>
<missedConnection>
<user>5176422850</user>
<category>w4m</category>
<city>Chicago</city>
<post>Men who leave their phone number for the waitress - - w4m</post>
<time>2015-08-17 04:02</time>
<link>//milwaukee.craigslist.org/mis/5176422850.html</link>
</missedConnection>
<missedConnection>
<user>5176363038</user>
<category>w4m</category>
<city>Chicago</city>
<post>St. Lukes Security - w4m</post>
<time>2015-08-17 00:34</time>
<link>//milwaukee.craigslist.org/mis/5176363038.html</link>
</missedConnection>
<missedConnection>
<user>5176308641</user>
<category>w4m</category>
<city>Chicago</city>
<post>Dear M... Love, A - w4m</post>
<time>2015-08-16 23:11</time>
<link>//milwaukee.craigslist.org/mis/5176308641.html</link>
</missedConnection>
<missedConnection>
<user>5176181995</user>
<category>w4m</category>
<city>Chicago</city>
<post>You came in by yourself and sat at the bar - w4m</post>
<time>2015-08-16 21:45</time>
<link>//southbend.craigslist.org/mis/5176181995.html</link>
</missedConnection>
<missedConnection>
<user>5176118975</user>
<category>w4m</category>
<city>Chicago</city>
<post>searching for someone in milwaukee - w4m</post>
<time>2015-08-16 19:59</time>
<link>//milwaukee.craigslist.org/mis/5176118975.html</link>
</missedConnection>
<missedConnection>
<user>5175958717</user>
<category>w4m</category>
<city>Chicago</city>
<post>Looking for long haired guys - w4m</post>
<time>2015-08-16 18:31</time>
<link>//lasalle.craigslist.org/mis/5175958717.html</link>
</missedConnection>
<missedConnection>
<user>5175838679</user>
<category>w4m</category>
<city>Chicago</city>
<post>Landmark bartender who remembered me - w4m</post>
<time>2015-08-16 16:11</time>
<link>//milwaukee.craigslist.org/mis/5175838679.html</link>
</missedConnection>
<missedConnection>
<user>5175672746</user>
<category>w4m</category>
<city>Chicago</city>
<post>I See You.. - w4m</post>
<time>2015-08-16 14:22</time>
<link>//racine.craigslist.org/mis/5175672746.html</link>
</missedConnection>
<missedConnection>
<user>5171788517</user>
<category>w4m</category>
<city>Chicago</city>
<post>Shy Guy/Eye Contact - w4m</post>
<time>2015-08-16 12:13</time>
<link>//milwaukee.craigslist.org/mis/5171788517.html</link>
</missedConnection>
<missedConnection>
<user>5174915993</user>
<category>w4m</category>
<city>Chicago</city>
<post>Afternoon run on Reid farm and spring creek - w4m</post>
<time>2015-08-15 23:00</time>
<link>//rockford.craigslist.org/mis/5174915993.html</link>
</missedConnection>
<missedConnection>
<user>5170208459</user>
<category>w4m</category>
<city>Chicago</city>
<post>Last Saturday late afternoon - w4m</post>
<time>2015-08-15 23:00</time>
<link>//rockford.craigslist.org/mis/5170208459.html</link>
</missedConnection>
<missedConnection>
<user>5174327766</user>
<category>w4m</category>
<city>Chicago</city>
<post>I miss you B - w4m</post>
<time>2015-08-15 14:46</time>
<link>//milwaukee.craigslist.org/mis/5174327766.html</link>
</missedConnection>
<missedConnection>
<user>5174053613</user>
<category>w4m</category>
<city>Chicago</city>
<post>club kana on 5th national - w4m</post>
<time>2015-08-15 12:01</time>
<link>//milwaukee.craigslist.org/mis/5174053613.html</link>
</missedConnection>
<missedConnection>
<user>5173493143</user>
<category>w4m</category>
<city>Chicago</city>
<post>Wish upon a star..... - w4m</post>
<time>2015-08-15 01:11</time>
<link>//milwaukee.craigslist.org/mis/5173493143.html</link>
</missedConnection>
<missedConnection>
<user>5172283576</user>
<category>w4m</category>
<city>Chicago</city>
<post>225 South resturant - w4m</post>
<time>2015-08-14 10:28</time>
<link>//milwaukee.craigslist.org/mis/5172283576.html</link>
</missedConnection>
<missedConnection>
<user>5172093470</user>
<category>w4m</category>
<city>Chicago</city>
<post>Still missing you but trying not to - w4m</post>
<time>2015-08-14 08:32</time>
<link>//rockford.craigslist.org/mis/5172093470.html</link>
</missedConnection>
<missedConnection>
<user>5171822222</user>
<category>w4m</category>
<city>Chicago</city>
<post>Re: Why Are We Doing This To Each Other - m4w (Milwaukee) - w4m</post>
<time>2015-08-13 23:31</time>
<link>//milwaukee.craigslist.org/mis/5171822222.html</link>
</missedConnection>
<missedConnection>
<user>5171593080</user>
<category>w4m</category>
<city>Chicago</city>
<post>Construction Men on S. 27th St. - w4m</post>
<time>2015-08-13 19:31</time>
<link>//milwaukee.craigslist.org/mis/5171593080.html</link>
</missedConnection>
<missedConnection>
<user>5171271555</user>
<category>w4m</category>
<city>Chicago</city>
<post>NorthShore Wi Athletic Club - w4m</post>
<time>2015-08-13 15:48</time>
<link>//milwaukee.craigslist.org/mis/5171271555.html</link>
</missedConnection>
<missedConnection>
<user>5171116275</user>
<category>w4m</category>
<city>Chicago</city>
<post>Security Guard - w4m</post>
<time>2015-08-13 14:21</time>
<link>//rockford.craigslist.org/mis/5171116275.html</link>
</missedConnection>
<missedConnection>
<user>5171054789</user>
<category>w4m</category>
<city>Chicago</city>
<post>It's like you have a mistress - w4m</post>
<time>2015-08-13 13:46</time>
<link>//racine.craigslist.org/mis/5171054789.html</link>
</missedConnection>
<missedConnection>
<user>5170416761</user>
<category>w4m</category>
<city>Chicago</city>
<post>Stars on your arms - w4m</post>
<time>2015-08-13 07:30</time>
<link>//milwaukee.craigslist.org/mis/5170416761.html</link>
</missedConnection>
<missedConnection>
<user>5170260193</user>
<category>w4m</category>
<city>Chicago</city>
<post>Spider webs at Walmart - w4m</post>
<time>2015-08-13 00:35</time>
<link>//rockford.craigslist.org/mis/5170260193.html</link>
</missedConnection>
<missedConnection>
<user>5169023853</user>
<category>w4m</category>
<city>Chicago</city>
<post>Was that you in the corner? - w4m</post>
<time>2015-08-12 10:25</time>
<link>//milwaukee.craigslist.org/mis/5169023853.html</link>
</missedConnection>
<missedConnection>
<user>5168339630</user>
<category>w4m</category>
<city>Chicago</city>
<post>Looking for Steve from chat on okmeet - w4m</post>
<time>2015-08-11 19:57</time>
<link>//milwaukee.craigslist.org/mis/5168339630.html</link>
</missedConnection>
<missedConnection>
<user>5167743652</user>
<category>w4m</category>
<city>Chicago</city>
<post>We could have had it all - w4m</post>
<time>2015-08-11 13:59</time>
<link>//milwaukee.craigslist.org/mis/5167743652.html</link>
</missedConnection>
<missedConnection>
<user>5167192493</user>
<category>w4m</category>
<city>Chicago</city>
<post>Nice guys in big ass truck - w4m</post>
<time>2015-08-11 09:27</time>
<link>//rockford.craigslist.org/mis/5167192493.html</link>
</missedConnection>
<missedConnection>
<user>5167093384</user>
<category>w4m</category>
<city>Chicago</city>
<post>still haven't checked missed connections mystery man - w4m</post>
<time>2015-08-11 08:23</time>
<link>//milwaukee.craigslist.org/mis/5167093384.html</link>
</missedConnection>
<missedConnection>
<user>5177321304</user>
<category>m4w</category>
<city>Chicago</city>
<post>Cindy Cindy Cindy - m4w</post>
<time>2015-08-17 14:41</time>
<link>/nwc/mis/5177321304.html</link>
</missedConnection>
<missedConnection>
<user>5177288305</user>
<category>m4w</category>
<city>Chicago</city>
<post>We met in the alley. Your body is ridiculous - m4w</post>
<time>2015-08-17 14:24</time>
<link>/chc/mis/5177288305.html</link>
</missedConnection>
<missedConnection>
<user>5177221805</user>
<category>m4w</category>
<city>Chicago</city>
<post>You live above me. We were just outside smoking - m4w</post>
<time>2015-08-17 13:52</time>
<link>/chc/mis/5177221805.html</link>
</missedConnection>
<missedConnection>
<user>5165877286</user>
<category>m4w</category>
<city>Chicago</city>
<post>Roscoe Village MILFs - m4w</post>
<time>2015-08-17 13:11</time>
<link>/chc/mis/5165877286.html</link>
</missedConnection>
<missedConnection>
<user>5177118451</user>
<category>m4w</category>
<city>Chicago</city>
<post>Bartlett Jewel - m4w</post>
<time>2015-08-17 13:03</time>
<link>/nwc/mis/5177118451.html</link>
</missedConnection>
<missedConnection>
<user>5177071828</user>
<category>m4w</category>
<city>Chicago</city>
<post>Donelli's Pub - m4w</post>
<time>2015-08-17 12:41</time>
<link>/nch/mis/5177071828.html</link>
</missedConnection>
<missedConnection>
<user>5177044231</user>
<category>m4w</category>
<city>Chicago</city>
<post>Blonde on Congress 8-13 - m4w</post>
<time>2015-08-17 12:28</time>
<link>/chc/mis/5177044231.html</link>
</missedConnection>
<missedConnection>
<user>5177035204</user>
<category>m4w</category>
<city>Chicago</city>
<post>I want you ... - m4w</post>
<time>2015-08-17 12:24</time>
<link>/chc/mis/5177035204.html</link>
</missedConnection>
<missedConnection>
<user>5177025829</user>
<category>m4w</category>
<city>Chicago</city>
<post>Danny's Pizza - m4w</post>
<time>2015-08-17 12:19</time>
<link>/chc/mis/5177025829.html</link>
</missedConnection>
<missedConnection>
<user>5177015294</user>
<category>m4w</category>
<city>Chicago</city>
<post>Amazing Megan - m4w</post>
<time>2015-08-17 12:14</time>
<link>/sox/mis/5177015294.html</link>
</missedConnection>
<missedConnection>
<user>5177013046</user>
<category>m4w</category>
<city>Chicago</city>
<post>Flat iron black dress shooting pool - m4w</post>
<time>2015-08-17 12:13</time>
<link>/chc/mis/5177013046.html</link>
</missedConnection>
<missedConnection>
<user>5176977763</user>
<category>m4w</category>
<city>Chicago</city>
<post>Looked at your carpet to be cleaned - m4w</post>
<time>2015-08-17 11:56</time>
<link>/sox/mis/5176977763.html</link>
</missedConnection>
<missedConnection>
<user>5176967943</user>
<category>m4w</category>
<city>Chicago</city>
<post>in your Mercedes - m4w</post>
<time>2015-08-17 11:51</time>
<link>/chc/mis/5176967943.html</link>
</missedConnection>
<missedConnection>
<user>5176913362</user>
<category>m4w</category>
<city>Chicago</city>
<post>Kathy remember me? - m4w</post>
<time>2015-08-17 11:42</time>
<link>/nwi/mis/5176913362.html</link>
</missedConnection>
<missedConnection>
<user>5176840944</user>
<category>m4w</category>
<city>Chicago</city>
<post>Holiday Bar 8/14 - m4w</post>
<time>2015-08-17 10:51</time>
<link>/nch/mis/5176840944.html</link>
</missedConnection>
<missedConnection>
<user>5176835166</user>
<category>m4w</category>
<city>Chicago</city>
<post>9:10am Near Macy's on Washington! - m4w</post>
<time>2015-08-17 10:49</time>
<link>/chc/mis/5176835166.html</link>
</missedConnection>
<missedConnection>
<user>5129580388</user>
<category>m4w</category>
<city>Chicago</city>
<post>Nordstrom on Mich. Ave. (Women's shoes - m4w</post>
<time>2015-08-17 10:41</time>
<link>/chc/mis/5129580388.html</link>
</missedConnection>
<missedConnection>
<user>5169859312</user>
<category>m4w</category>
<city>Chicago</city>
<post>You made that water look sexy! - m4w</post>
<time>2015-08-17 10:41</time>
<link>/chc/mis/5169859312.html</link>
</missedConnection>
<missedConnection>
<user>5148097600</user>
<category>m4w</category>
<city>Chicago</city>
<post>La Colombe 7/29 - m4w</post>
<time>2015-08-17 10:36</time>
<link>/wcl/mis/5148097600.html</link>
</missedConnection>
<missedConnection>
<user>5176792313</user>
<category>m4w</category>
<city>Chicago</city>
<post>Glenwood Ave Arts Fest - m4w</post>
<time>2015-08-17 10:28</time>
<link>/chc/mis/5176792313.html</link>
</missedConnection>
<missedConnection>
<user>5176789105</user>
<category>m4w</category>
<city>Chicago</city>
<post>Peace sign and a cute smile on Sunday - m4w</post>
<time>2015-08-17 10:26</time>
<link>/chc/mis/5176789105.html</link>
</missedConnection>
<missedConnection>
<user>5176785321</user>
<category>m4w</category>
<city>Chicago</city>
<post>shell newbie truck stop - m4w</post>
<time>2015-08-17 10:24</time>
<link>/nwi/mis/5176785321.html</link>
</missedConnection>
<missedConnection>
<user>5176737426</user>
<category>m4w</category>
<city>Chicago</city>
<post>VALENCIA my sweet ! - m4w</post>
<time>2015-08-17 10:17</time>
<link>/chc/mis/5176737426.html</link>
</missedConnection>
<missedConnection>
<user>5176663692</user>
<category>m4w</category>
<city>Chicago</city>
<post>Emily - m4w</post>
<time>2015-08-17 09:25</time>
<link>/chc/mis/5176663692.html</link>
</missedConnection>
<missedConnection>
<user>5141199244</user>
<category>m4w</category>
<city>Chicago</city>
<post>Event On Sunday - m4w</post>
<time>2015-08-17 08:54</time>