forked from tinypony/emn_citysim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdistances.json
8056 lines (8056 loc) · 850 KB
/
distances.json
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
{ "_id" : { "$oid" : "54bbe6f744aeb77ea3c2b3e7" }, "from" : "6040284", "to" : "6040250", "distance" : 143 }
{ "_id" : { "$oid" : "54bbe6f744aeb77ea3c2b3e8" }, "from" : "6040250", "to" : "6040247", "distance" : 419 }
{ "_id" : { "$oid" : "54bbe6f744aeb77ea3c2b3e9" }, "from" : "6040247", "to" : "6040243", "distance" : 865 }
{ "_id" : { "$oid" : "54bbe6f744aeb77ea3c2b3ea" }, "from" : "6040243", "to" : "6040280", "distance" : 639 }
{ "_id" : { "$oid" : "54bbe6f844aeb77ea3c2b3eb" }, "from" : "6040280", "to" : "6040274", "distance" : 430 }
{ "_id" : { "$oid" : "54bbe6f844aeb77ea3c2b3ec" }, "from" : "6040274", "to" : "6050218", "distance" : 405 }
{ "_id" : { "$oid" : "54bbe6f844aeb77ea3c2b3ed" }, "from" : "6050218", "to" : "6040233", "distance" : 580 }
{ "_id" : { "$oid" : "54bbe6f844aeb77ea3c2b3ee" }, "from" : "6040233", "to" : "6050253", "distance" : 422 }
{ "_id" : { "$oid" : "54bbe6f844aeb77ea3c2b3ef" }, "from" : "6050253", "to" : "6040296", "distance" : 2022 }
{ "_id" : { "$oid" : "54bbe6f844aeb77ea3c2b3f0" }, "from" : "6040296", "to" : "6050252", "distance" : 1075 }
{ "_id" : { "$oid" : "54bbe6f844aeb77ea3c2b3f1" }, "from" : "6050252", "to" : "6040217", "distance" : 459 }
{ "_id" : { "$oid" : "54bbe6f844aeb77ea3c2b3f2" }, "from" : "6040217", "to" : "6040218", "distance" : 307 }
{ "_id" : { "$oid" : "54bbe6f844aeb77ea3c2b3f3" }, "from" : "6040218", "to" : "6040221", "distance" : 205 }
{ "_id" : { "$oid" : "54bbe6f844aeb77ea3c2b3f4" }, "from" : "6040221", "to" : "6040224", "distance" : 321 }
{ "_id" : { "$oid" : "54bbe6f844aeb77ea3c2b3f5" }, "from" : "6040224", "to" : "6040200", "distance" : 485 }
{ "_id" : { "$oid" : "54bbe6f944aeb77ea3c2b3f6" }, "from" : "6040200", "to" : "6050220", "distance" : 648 }
{ "_id" : { "$oid" : "54bbe6f944aeb77ea3c2b3f7" }, "from" : "6050220", "to" : "6040241", "distance" : 329 }
{ "_id" : { "$oid" : "54bbe6f944aeb77ea3c2b3f8" }, "from" : "6040241", "to" : "6040215", "distance" : 510 }
{ "_id" : { "$oid" : "54bbe6f944aeb77ea3c2b3f9" }, "from" : "6040215", "to" : "6030201", "distance" : 2539 }
{ "_id" : { "$oid" : "54bbe6f944aeb77ea3c2b3fa" }, "from" : "6030201", "to" : "6030232", "distance" : 1454 }
{ "_id" : { "$oid" : "54bbe6f944aeb77ea3c2b3fb" }, "from" : "6030232", "to" : "6020201", "distance" : 2461 }
{ "_id" : { "$oid" : "54bbe6f944aeb77ea3c2b3fc" }, "from" : "6020201", "to" : "2443227", "distance" : 6516 }
{ "_id" : { "$oid" : "54bbe6f944aeb77ea3c2b3fd" }, "from" : "2443227", "to" : "2442201", "distance" : 2357 }
{ "_id" : { "$oid" : "54bbe6f944aeb77ea3c2b3fe" }, "from" : "2442201", "to" : "2311220", "distance" : 1659 }
{ "_id" : { "$oid" : "54bbe6f944aeb77ea3c2b3ff" }, "from" : "2311220", "to" : "2232280", "distance" : 1550 }
{ "_id" : { "$oid" : "54bbe6f944aeb77ea3c2b400" }, "from" : "2232280", "to" : "2232232", "distance" : 4925 }
{ "_id" : { "$oid" : "54bbe6fa44aeb77ea3c2b401" }, "from" : "2232232", "to" : "2231202", "distance" : 1784 }
{ "_id" : { "$oid" : "54bbe6fa44aeb77ea3c2b402" }, "from" : "2231202", "to" : "2231201", "distance" : 2897 }
{ "_id" : { "$oid" : "54bbe6fa44aeb77ea3c2b403" }, "from" : "2231201", "to" : "2232204", "distance" : 987 }
{ "_id" : { "$oid" : "54bbe6fa44aeb77ea3c2b404" }, "from" : "2232204", "to" : "1201130", "distance" : 4218 }
{ "_id" : { "$oid" : "54bbe6fa44aeb77ea3c2b405" }, "from" : "1201130", "to" : "1040234", "distance" : 814 }
{ "_id" : { "$oid" : "54bbe6fa44aeb77ea3c2b406" }, "from" : "1040234", "to" : "1040289", "distance" : 592 }
{ "_id" : { "$oid" : "54bbe93044ae6757913a2751" }, "from" : "6300202", "to" : "6300201", "distance" : 9663 }
{ "_id" : { "$oid" : "54bbe93044ae6757913a2752" }, "from" : "6300201", "to" : "6200201", "distance" : 5439 }
{ "_id" : { "$oid" : "54bbe93144ae6757913a2753" }, "from" : "6200201", "to" : "6050209", "distance" : 4803 }
{ "_id" : { "$oid" : "54bbe93144ae6757913a2754" }, "from" : "6050209", "to" : "6050211", "distance" : 504 }
{ "_id" : { "$oid" : "54bbe93244ae6757913a2755" }, "from" : "6050211", "to" : "6050213", "distance" : 813 }
{ "_id" : { "$oid" : "54bbe93244ae6757913a2756" }, "from" : "6050213", "to" : "6040235", "distance" : 325 }
{ "_id" : { "$oid" : "54bbe93244ae6757913a2757" }, "from" : "6040235", "to" : "6040232", "distance" : 289 }
{ "_id" : { "$oid" : "54bbe93344ae6757913a2758" }, "from" : "6040232", "to" : "6040231", "distance" : 81 }
{ "_id" : { "$oid" : "54bbe93344ae6757913a2759" }, "from" : "6040231", "to" : "6040233", "distance" : 710 }
{ "_id" : { "$oid" : "54bbe93444ae6757913a275a" }, "from" : "6040233", "to" : "6040236", "distance" : 219 }
{ "_id" : { "$oid" : "54bbe93444ae6757913a275b" }, "from" : "6040236", "to" : "6040239", "distance" : 523 }
{ "_id" : { "$oid" : "54bbe93444ae6757913a275c" }, "from" : "6040239", "to" : "6050251", "distance" : 693 }
{ "_id" : { "$oid" : "54bbe93544ae6757913a275d" }, "from" : "6050251", "to" : "6040291", "distance" : 518 }
{ "_id" : { "$oid" : "54bbe93544ae6757913a275e" }, "from" : "1201108", "to" : "1201135", "distance" : 215 }
{ "_id" : { "$oid" : "54bbe93644ae6757913a275f" }, "from" : "1201135", "to" : "1201140", "distance" : 366 }
{ "_id" : { "$oid" : "54bbe93644ae6757913a2760" }, "from" : "1201140", "to" : "1201131", "distance" : 329 }
{ "_id" : { "$oid" : "54bbe93744ae6757913a2761" }, "from" : "1201131", "to" : "1201112", "distance" : 355 }
{ "_id" : { "$oid" : "54bbe93744ae6757913a2762" }, "from" : "1201112", "to" : "1201111", "distance" : 121 }
{ "_id" : { "$oid" : "54bbe93844ae6757913a2763" }, "from" : "1040285", "to" : "1040231", "distance" : 499 }
{ "_id" : { "$oid" : "54bbe93844ae6757913a2764" }, "from" : "1040231", "to" : "1201229", "distance" : 847 }
{ "_id" : { "$oid" : "54bbe93844ae6757913a2765" }, "from" : "1201229", "to" : "2222205", "distance" : 4232 }
{ "_id" : { "$oid" : "54bbe93944ae6757913a2766" }, "from" : "2222205", "to" : "2213234", "distance" : 1034 }
{ "_id" : { "$oid" : "54bbe93944ae6757913a2767" }, "from" : "2213234", "to" : "2211290", "distance" : 752 }
{ "_id" : { "$oid" : "54bbe93a44ae6757913a2768" }, "from" : "2211290", "to" : "2214291", "distance" : 2895 }
{ "_id" : { "$oid" : "54bbe93a44ae6757913a2769" }, "from" : "2214291", "to" : "2322201", "distance" : 1940 }
{ "_id" : { "$oid" : "54bbe93a44ae6757913a276a" }, "from" : "2322201", "to" : "2322210", "distance" : 663 }
{ "_id" : { "$oid" : "54bbe93b44ae6757913a276b" }, "from" : "2322210", "to" : "2432201", "distance" : 2397 }
{ "_id" : { "$oid" : "54bbe93b44ae6757913a276c" }, "from" : "2432201", "to" : "2421217", "distance" : 2489 }
{ "_id" : { "$oid" : "54bbe93c44ae6757913a276d" }, "from" : "2421217", "to" : "6020202", "distance" : 5699 }
{ "_id" : { "$oid" : "54bbe93c44ae6757913a276e" }, "from" : "6020202", "to" : "6030206", "distance" : 2527 }
{ "_id" : { "$oid" : "54bbe93c44ae6757913a276f" }, "from" : "6030206", "to" : "6030202", "distance" : 1368 }
{ "_id" : { "$oid" : "54bbe93d44ae6757913a2770" }, "from" : "6030202", "to" : "6060212", "distance" : 2653 }
{ "_id" : { "$oid" : "54bbe93d44ae6757913a2771" }, "from" : "6060212", "to" : "6040262", "distance" : 327 }
{ "_id" : { "$oid" : "54bbe93e44ae6757913a2772" }, "from" : "6040262", "to" : "6040271", "distance" : 688 }
{ "_id" : { "$oid" : "54bbe93e44ae6757913a2773" }, "from" : "6040271", "to" : "6040226", "distance" : 474 }
{ "_id" : { "$oid" : "54bbe93e44ae6757913a2774" }, "from" : "6040226", "to" : "6040222", "distance" : 326 }
{ "_id" : { "$oid" : "54bbe93f44ae6757913a2775" }, "from" : "6040222", "to" : "6040220", "distance" : 220 }
{ "_id" : { "$oid" : "54bbe93f44ae6757913a2776" }, "from" : "6040220", "to" : "6040219", "distance" : 307 }
{ "_id" : { "$oid" : "54bbe94044ae6757913a2777" }, "from" : "6040219", "to" : "6050251", "distance" : 555 }
{ "_id" : { "$oid" : "54bbe94044ae6757913a2778" }, "from" : "6050251", "to" : "6040293", "distance" : 510 }
{ "_id" : { "$oid" : "54bbe94044ae6757913a2779" }, "from" : "6040293", "to" : "6040261", "distance" : 690 }
{ "_id" : { "$oid" : "54bbe94144ae6757913a277a" }, "from" : "6040261", "to" : "6070243", "distance" : 393 }
{ "_id" : { "$oid" : "54bbe94144ae6757913a277b" }, "from" : "6070243", "to" : "6040207", "distance" : 346 }
{ "_id" : { "$oid" : "54bbe94144ae6757913a277c" }, "from" : "6040207", "to" : "6040205", "distance" : 476 }
{ "_id" : { "$oid" : "54bbe94244ae6757913a277d" }, "from" : "6040205", "to" : "6040203", "distance" : 363 }
{ "_id" : { "$oid" : "54bbe94344ae6757913a277e" }, "from" : "6040203", "to" : "6040202", "distance" : 518 }
{ "_id" : { "$oid" : "54bbe94344ae6757913a277f" }, "from" : "6040202", "to" : "6070241", "distance" : 615 }
{ "_id" : { "$oid" : "54bbe94444ae6757913a2780" }, "from" : "6070241", "to" : "6070225", "distance" : 610 }
{ "_id" : { "$oid" : "54bbe94444ae6757913a2781" }, "from" : "6070225", "to" : "6070223", "distance" : 440 }
{ "_id" : { "$oid" : "54bbe94444ae6757913a2782" }, "from" : "6070223", "to" : "6070220", "distance" : 483 }
{ "_id" : { "$oid" : "54bbe94544ae6757913a2783" }, "from" : "6070220", "to" : "6070237", "distance" : 283 }
{ "_id" : { "$oid" : "54bbe94544ae6757913a2784" }, "from" : "6070237", "to" : "6070214", "distance" : 582 }
{ "_id" : { "$oid" : "54bbe94644ae6757913a2785" }, "from" : "6070214", "to" : "6070234", "distance" : 604 }
{ "_id" : { "$oid" : "54bbe94644ae6757913a2786" }, "from" : "6070234", "to" : "6070216", "distance" : 430 }
{ "_id" : { "$oid" : "54bbe94644ae6757913a2787" }, "from" : "6070216", "to" : "6070218", "distance" : 601 }
{ "_id" : { "$oid" : "54bbe94744ae6757913a2788" }, "from" : "6070218", "to" : "6070219", "distance" : 242 }
{ "_id" : { "$oid" : "54bbe94744ae6757913a2789" }, "from" : "6070219", "to" : "6070222", "distance" : 482 }
{ "_id" : { "$oid" : "54bbe94844ae6757913a278a" }, "from" : "6070222", "to" : "6070221", "distance" : 139 }
{ "_id" : { "$oid" : "54bbe94844ae6757913a278b" }, "from" : "6070221", "to" : "6070215", "distance" : 402 }
{ "_id" : { "$oid" : "54bbe94844ae6757913a278c" }, "from" : "6070215", "to" : "6070210", "distance" : 311 }
{ "_id" : { "$oid" : "54bbe94944ae6757913a278d" }, "from" : "6070210", "to" : "6070208", "distance" : 566 }
{ "_id" : { "$oid" : "54bbe94944ae6757913a278e" }, "from" : "6070208", "to" : "6070205", "distance" : 445 }
{ "_id" : { "$oid" : "54bbe94a44ae6757913a278f" }, "from" : "6070205", "to" : "6070203", "distance" : 482 }
{ "_id" : { "$oid" : "54bbe94a44ae6757913a2790" }, "from" : "6070203", "to" : "6070202", "distance" : 948 }
{ "_id" : { "$oid" : "54bbe94a44ae6757913a2791" }, "from" : "6070202", "to" : "6080210", "distance" : 671 }
{ "_id" : { "$oid" : "54bbe94b44ae6757913a2792" }, "from" : "6080210", "to" : "6080208", "distance" : 481 }
{ "_id" : { "$oid" : "54bbe94b44ae6757913a2793" }, "from" : "6080208", "to" : "6080205", "distance" : 646 }
{ "_id" : { "$oid" : "54bbe94c44ae6757913a2794" }, "from" : "6080205", "to" : "6080203", "distance" : 640 }
{ "_id" : { "$oid" : "54bbe94c44ae6757913a2795" }, "from" : "6080203", "to" : "6100210", "distance" : 876 }
{ "_id" : { "$oid" : "54bbe94c44ae6757913a2796" }, "from" : "6100210", "to" : "6100209", "distance" : 647 }
{ "_id" : { "$oid" : "54bbe94d44ae6757913a2797" }, "from" : "6100209", "to" : "6100206", "distance" : 580 }
{ "_id" : { "$oid" : "54bbe94e44ae6757913a2798" }, "from" : "6100206", "to" : "6100203", "distance" : 336 }
{ "_id" : { "$oid" : "54bbe94e44ae6757913a2799" }, "from" : "6100203", "to" : "6100201", "distance" : 223 }
{ "_id" : { "$oid" : "54bbe94e44ae6757913a279a" }, "from" : "6100201", "to" : "6100202", "distance" : 695 }
{ "_id" : { "$oid" : "54bbe94f44ae6757913a279b" }, "from" : "6100202", "to" : "6100205", "distance" : 555 }
{ "_id" : { "$oid" : "54bbe94f44ae6757913a279c" }, "from" : "6100205", "to" : "6100207", "distance" : 539 }
{ "_id" : { "$oid" : "54bbe95044ae6757913a279d" }, "from" : "6100207", "to" : "6100208", "distance" : 515 }
{ "_id" : { "$oid" : "54bbe95044ae6757913a279e" }, "from" : "6100208", "to" : "6100211", "distance" : 639 }
{ "_id" : { "$oid" : "54bbe95044ae6757913a279f" }, "from" : "6100211", "to" : "6080202", "distance" : 781 }
{ "_id" : { "$oid" : "54bbe95144ae6757913a27a0" }, "from" : "6080202", "to" : "6080204", "distance" : 740 }
{ "_id" : { "$oid" : "54bbe95144ae6757913a27a1" }, "from" : "6080204", "to" : "6080206", "distance" : 252 }
{ "_id" : { "$oid" : "54bbe95244ae6757913a27a2" }, "from" : "6080206", "to" : "6080207", "distance" : 362 }
{ "_id" : { "$oid" : "54bbe95244ae6757913a27a3" }, "from" : "6080207", "to" : "6080209", "distance" : 511 }
{ "_id" : { "$oid" : "54bbe95244ae6757913a27a4" }, "from" : "6080209", "to" : "6070201", "distance" : 651 }
{ "_id" : { "$oid" : "54bbe95344ae6757913a27a5" }, "from" : "6070201", "to" : "6070204", "distance" : 977 }
{ "_id" : { "$oid" : "54bbe95344ae6757913a27a6" }, "from" : "6070204", "to" : "6070206", "distance" : 590 }
{ "_id" : { "$oid" : "54bbe95444ae6757913a27a7" }, "from" : "6070206", "to" : "6070207", "distance" : 474 }
{ "_id" : { "$oid" : "54bbe95444ae6757913a27a8" }, "from" : "6070207", "to" : "6070212", "distance" : 340 }
{ "_id" : { "$oid" : "54bbe95444ae6757913a27a9" }, "from" : "6070212", "to" : "6070217", "distance" : 457 }
{ "_id" : { "$oid" : "54bbe95544ae6757913a27aa" }, "from" : "6070217", "to" : "6070223", "distance" : 555 }
{ "_id" : { "$oid" : "54bbe95544ae6757913a27ab" }, "from" : "6070214", "to" : "6070213", "distance" : 604 }
{ "_id" : { "$oid" : "54bbe95544ae6757913a27ac" }, "from" : "6070213", "to" : "6070216", "distance" : 430 }
{ "_id" : { "$oid" : "54bbe95644ae6757913a27ad" }, "from" : "6070222", "to" : "6070224", "distance" : 158 }
{ "_id" : { "$oid" : "54bbe95644ae6757913a27ae" }, "from" : "6070224", "to" : "6070226", "distance" : 333 }
{ "_id" : { "$oid" : "54bbe95744ae6757913a27af" }, "from" : "6070226", "to" : "6070227", "distance" : 559 }
{ "_id" : { "$oid" : "54bbe95744ae6757913a27b0" }, "from" : "6070227", "to" : "6040201", "distance" : 639 }
{ "_id" : { "$oid" : "54bbe95744ae6757913a27b1" }, "from" : "6040201", "to" : "6040204", "distance" : 530 }
{ "_id" : { "$oid" : "54bbe95844ae6757913a27b2" }, "from" : "6040204", "to" : "6040206", "distance" : 394 }
{ "_id" : { "$oid" : "54bbe95844ae6757913a27b3" }, "from" : "6040206", "to" : "6040208", "distance" : 460 }
{ "_id" : { "$oid" : "54bbe95944ae6757913a27b4" }, "from" : "6040208", "to" : "6040260", "distance" : 608 }
{ "_id" : { "$oid" : "54bbe95944ae6757913a27b5" }, "from" : "6040260", "to" : "6040296", "distance" : 1238 }
{ "_id" : { "$oid" : "54bbe95a44ae6757913a27b6" }, "from" : "6040260", "to" : "6040291", "distance" : 808 }
{ "_id" : { "$oid" : "54bbe95a44ae6757913a27b7" }, "from" : "6040291", "to" : "6050254", "distance" : 959 }
{ "_id" : { "$oid" : "54bbe95a44ae6757913a27b8" }, "from" : "6050254", "to" : "6040234", "distance" : 446 }
{ "_id" : { "$oid" : "54bbe95b44ae6757913a27b9" }, "from" : "6040234", "to" : "6040270", "distance" : 803 }
{ "_id" : { "$oid" : "54bbe95b44ae6757913a27ba" }, "from" : "6040270", "to" : "6040272", "distance" : 425 }
{ "_id" : { "$oid" : "54bbe95c44ae6757913a27bb" }, "from" : "6040272", "to" : "6040276", "distance" : 315 }
{ "_id" : { "$oid" : "54bbe95c44ae6757913a27bc" }, "from" : "6040276", "to" : "6040278", "distance" : 432 }
{ "_id" : { "$oid" : "54bbe95c44ae6757913a27bd" }, "from" : "6040278", "to" : "6040242", "distance" : 518 }
{ "_id" : { "$oid" : "54bbe95d44ae6757913a27be" }, "from" : "6040242", "to" : "6040244", "distance" : 201 }
{ "_id" : { "$oid" : "54bbe95d44ae6757913a27bf" }, "from" : "6040244", "to" : "6040246", "distance" : 726 }
{ "_id" : { "$oid" : "54bbe95e44ae6757913a27c0" }, "from" : "6040246", "to" : "6040284", "distance" : 589 }
{ "_id" : { "$oid" : "54bbe95e44ae6757913a27c1" }, "from" : "6040250", "to" : "6040281", "distance" : 532 }
{ "_id" : { "$oid" : "54bbe95e44ae6757913a27c2" }, "from" : "6040281", "to" : "6040277", "distance" : 330 }
{ "_id" : { "$oid" : "54bbe95f44ae6757913a27c3" }, "from" : "6040277", "to" : "6050252", "distance" : 838 }
{ "_id" : { "$oid" : "54bbe95f44ae6757913a27c4" }, "from" : "6040224", "to" : "6040223", "distance" : 450 }
{ "_id" : { "$oid" : "54bbe96044ae6757913a27c5" }, "from" : "6040223", "to" : "6040227", "distance" : 759 }
{ "_id" : { "$oid" : "54bbe96044ae6757913a27c6" }, "from" : "6040227", "to" : "6030214", "distance" : 629 }
{ "_id" : { "$oid" : "54bbe96044ae6757913a27c7" }, "from" : "6030214", "to" : "6030217", "distance" : 584 }
{ "_id" : { "$oid" : "54bbe96144ae6757913a27c8" }, "from" : "6030217", "to" : "6030222", "distance" : 436 }
{ "_id" : { "$oid" : "54bbe96144ae6757913a27c9" }, "from" : "6030222", "to" : "6030225", "distance" : 408 }
{ "_id" : { "$oid" : "54bbe96244ae6757913a27ca" }, "from" : "6030225", "to" : "6030227", "distance" : 663 }
{ "_id" : { "$oid" : "54bbe96244ae6757913a27cb" }, "from" : "6030227", "to" : "6020210", "distance" : 928 }
{ "_id" : { "$oid" : "54bbe96244ae6757913a27cc" }, "from" : "6020210", "to" : "6020215", "distance" : 547 }
{ "_id" : { "$oid" : "54bbe96344ae6757913a27cd" }, "from" : "6020215", "to" : "6020213", "distance" : 787 }
{ "_id" : { "$oid" : "54bbe96344ae6757913a27ce" }, "from" : "6020213", "to" : "6020207", "distance" : 1243 }
{ "_id" : { "$oid" : "54bbe96444ae6757913a27cf" }, "from" : "6020207", "to" : "6020259", "distance" : 414 }
{ "_id" : { "$oid" : "54bbe96444ae6757913a27d0" }, "from" : "6020259", "to" : "6020201", "distance" : 356 }
{ "_id" : { "$oid" : "54bbe96544ae6757913a27d1" }, "from" : "2421217", "to" : "6020260", "distance" : 5677 }
{ "_id" : { "$oid" : "54bbe96544ae6757913a27d2" }, "from" : "6020260", "to" : "6020208", "distance" : 506 }
{ "_id" : { "$oid" : "54bbe96644ae6757913a27d3" }, "from" : "6020208", "to" : "6020214", "distance" : 1259 }
{ "_id" : { "$oid" : "54bbe96644ae6757913a27d4" }, "from" : "6020214", "to" : "6020216", "distance" : 734 }
{ "_id" : { "$oid" : "54bbe96744ae6757913a27d5" }, "from" : "6020216", "to" : "6020209", "distance" : 615 }
{ "_id" : { "$oid" : "54bbe96744ae6757913a27d6" }, "from" : "6020209", "to" : "6030226", "distance" : 938 }
{ "_id" : { "$oid" : "54bbe96744ae6757913a27d7" }, "from" : "6030226", "to" : "6030224", "distance" : 636 }
{ "_id" : { "$oid" : "54bbe96844ae6757913a27d8" }, "from" : "6030224", "to" : "6030223", "distance" : 319 }
{ "_id" : { "$oid" : "54bbe96844ae6757913a27d9" }, "from" : "6030223", "to" : "6030218", "distance" : 412 }
{ "_id" : { "$oid" : "54bbe96844ae6757913a27da" }, "from" : "6030218", "to" : "6030215", "distance" : 552 }
{ "_id" : { "$oid" : "54bbe96944ae6757913a27db" }, "from" : "6030215", "to" : "6040228", "distance" : 822 }
{ "_id" : { "$oid" : "54bbe96944ae6757913a27dc" }, "from" : "6040228", "to" : "6040225", "distance" : 611 }
{ "_id" : { "$oid" : "54bbe96a44ae6757913a27dd" }, "from" : "6040225", "to" : "6040226", "distance" : 531 }
{ "_id" : { "$oid" : "54bbe96a44ae6757913a27de" }, "from" : "6040219", "to" : "6050250", "distance" : 526 }
{ "_id" : { "$oid" : "54bbe96a44ae6757913a27df" }, "from" : "6050250", "to" : "6040275", "distance" : 636 }
{ "_id" : { "$oid" : "54bbe96b44ae6757913a27e0" }, "from" : "6040275", "to" : "6040282", "distance" : 529 }
{ "_id" : { "$oid" : "54bbe96b44ae6757913a27e1" }, "from" : "6040282", "to" : "6040284", "distance" : 549 }
{ "_id" : { "$oid" : "54bbe96c44ae6757913a27e2" }, "from" : "6040274", "to" : "6040273", "distance" : 337 }
{ "_id" : { "$oid" : "54bbe96c44ae6757913a27e3" }, "from" : "6040273", "to" : "6040269", "distance" : 397 }
{ "_id" : { "$oid" : "54bbe96c44ae6757913a27e4" }, "from" : "6040269", "to" : "6040231", "distance" : 133 }
{ "_id" : { "$oid" : "54bbe96d44ae6757913a27e5" }, "from" : "6050253", "to" : "6040293", "distance" : 906 }
{ "_id" : { "$oid" : "54bbe96e44ae6757913a27e6" }, "from" : "6050251", "to" : "6040292", "distance" : 505 }
{ "_id" : { "$oid" : "54bbe96f44ae6757913a27e7" }, "from" : "6040292", "to" : "6050254", "distance" : 972 }
{ "_id" : { "$oid" : "54bbe96f44ae6757913a27e8" }, "from" : "6040234", "to" : "6040272", "distance" : 632 }
{ "_id" : { "$oid" : "54bbe97044ae6757913a27e9" }, "from" : "6170253", "to" : "6170249", "distance" : 386 }
{ "_id" : { "$oid" : "54bbe97044ae6757913a27ea" }, "from" : "6170249", "to" : "6170247", "distance" : 675 }
{ "_id" : { "$oid" : "54bbe97044ae6757913a27eb" }, "from" : "6170247", "to" : "6170210", "distance" : 381 }
{ "_id" : { "$oid" : "54bbe97144ae6757913a27ec" }, "from" : "6170210", "to" : "6170208", "distance" : 314 }
{ "_id" : { "$oid" : "54bbe97144ae6757913a27ed" }, "from" : "6170208", "to" : "6170228", "distance" : 692 }
{ "_id" : { "$oid" : "54bbe97244ae6757913a27ee" }, "from" : "6170228", "to" : "6170206", "distance" : 299 }
{ "_id" : { "$oid" : "54bbe97244ae6757913a27ef" }, "from" : "6170206", "to" : "6170204", "distance" : 869 }
{ "_id" : { "$oid" : "54bbe97244ae6757913a27f0" }, "from" : "6170204", "to" : "6170202", "distance" : 527 }
{ "_id" : { "$oid" : "54bbe97344ae6757913a27f1" }, "from" : "6170202", "to" : "6120207", "distance" : 667 }
{ "_id" : { "$oid" : "54bbe97344ae6757913a27f2" }, "from" : "6120207", "to" : "6120206", "distance" : 838 }
{ "_id" : { "$oid" : "54bbe97444ae6757913a27f3" }, "from" : "6120206", "to" : "6120204", "distance" : 879 }
{ "_id" : { "$oid" : "54bbe97444ae6757913a27f4" }, "from" : "6120204", "to" : "2643206", "distance" : 908 }
{ "_id" : { "$oid" : "54bbe97444ae6757913a27f5" }, "from" : "2643206", "to" : "2643202", "distance" : 1095 }
{ "_id" : { "$oid" : "54bbe97544ae6757913a27f6" }, "from" : "2643202", "to" : "2641214", "distance" : 615 }
{ "_id" : { "$oid" : "54bbe97544ae6757913a27f7" }, "from" : "2641214", "to" : "2641212", "distance" : 828 }
{ "_id" : { "$oid" : "54bbe97544ae6757913a27f8" }, "from" : "2641212", "to" : "2645202", "distance" : 475 }
{ "_id" : { "$oid" : "54bbe97644ae6757913a27f9" }, "from" : "2645202", "to" : "2642210", "distance" : 1662 }
{ "_id" : { "$oid" : "54bbe97644ae6757913a27fa" }, "from" : "2642210", "to" : "2642208", "distance" : 446 }
{ "_id" : { "$oid" : "54bbe97744ae6757913a27fb" }, "from" : "2642208", "to" : "2642206", "distance" : 1293 }
{ "_id" : { "$oid" : "54bbe97744ae6757913a27fc" }, "from" : "2642206", "to" : "2642204", "distance" : 433 }
{ "_id" : { "$oid" : "54bbe97844ae6757913a27fd" }, "from" : "2642204", "to" : "2642202", "distance" : 568 }
{ "_id" : { "$oid" : "54bbe97844ae6757913a27fe" }, "from" : "2642202", "to" : "2634215", "distance" : 903 }
{ "_id" : { "$oid" : "54bbe97844ae6757913a27ff" }, "from" : "2634215", "to" : "2621239", "distance" : 1194 }
{ "_id" : { "$oid" : "54bbe97944ae6757913a2800" }, "from" : "2621239", "to" : "2621223", "distance" : 268 }
{ "_id" : { "$oid" : "54bbe97944ae6757913a2801" }, "from" : "2621223", "to" : "2621225", "distance" : 782 }
{ "_id" : { "$oid" : "54bbe97944ae6757913a2802" }, "from" : "2621225", "to" : "2621208", "distance" : 345 }
{ "_id" : { "$oid" : "54bbe97a44ae6757913a2803" }, "from" : "2621208", "to" : "2621203", "distance" : 214 }
{ "_id" : { "$oid" : "54bbe97a44ae6757913a2804" }, "from" : "2621203", "to" : "2621207", "distance" : 367 }
{ "_id" : { "$oid" : "54bbe97b44ae6757913a2805" }, "from" : "2621207", "to" : "2621205", "distance" : 478 }
{ "_id" : { "$oid" : "54bbe97b44ae6757913a2806" }, "from" : "2621205", "to" : "2611202", "distance" : 309 }
{ "_id" : { "$oid" : "54bbe97b44ae6757913a2807" }, "from" : "2611202", "to" : "2611248", "distance" : 188 }
{ "_id" : { "$oid" : "54bbe97c44ae6757913a2808" }, "from" : "2611248", "to" : "2611250", "distance" : 513 }
{ "_id" : { "$oid" : "54bbe97c44ae6757913a2809" }, "from" : "2611250", "to" : "2611208", "distance" : 508 }
{ "_id" : { "$oid" : "54bbe97d44ae6757913a280a" }, "from" : "2611208", "to" : "2611258", "distance" : 276 }
{ "_id" : { "$oid" : "54bbe97d44ae6757913a280b" }, "from" : "2611258", "to" : "2611249", "distance" : 72 }
{ "_id" : { "$oid" : "54bbe97e44ae6757913a280c" }, "from" : "2611249", "to" : "2611251", "distance" : 391 }
{ "_id" : { "$oid" : "54bbe97e44ae6757913a280d" }, "from" : "2611251", "to" : "2611257", "distance" : 468 }
{ "_id" : { "$oid" : "54bbe97e44ae6757913a280e" }, "from" : "2611257", "to" : "2621222", "distance" : 434 }
{ "_id" : { "$oid" : "54bbe97f44ae6757913a280f" }, "from" : "2621222", "to" : "2621204", "distance" : 238 }
{ "_id" : { "$oid" : "54bbe97f44ae6757913a2810" }, "from" : "2621204", "to" : "2621206", "distance" : 475 }
{ "_id" : { "$oid" : "54bbe97f44ae6757913a2811" }, "from" : "2621206", "to" : "2621202", "distance" : 269 }
{ "_id" : { "$oid" : "54bbe98044ae6757913a2812" }, "from" : "2621202", "to" : "2621215", "distance" : 201 }
{ "_id" : { "$oid" : "54bbe98044ae6757913a2813" }, "from" : "2621215", "to" : "2621227", "distance" : 181 }
{ "_id" : { "$oid" : "54bbe98144ae6757913a2814" }, "from" : "2621227", "to" : "2621228", "distance" : 290 }
{ "_id" : { "$oid" : "54bbe98144ae6757913a2815" }, "from" : "2621228", "to" : "2621224", "distance" : 728 }
{ "_id" : { "$oid" : "54bbe98144ae6757913a2816" }, "from" : "2621224", "to" : "2621238", "distance" : 326 }
{ "_id" : { "$oid" : "54bbe98244ae6757913a2817" }, "from" : "2621238", "to" : "2621226", "distance" : 1074 }
{ "_id" : { "$oid" : "54bbe98244ae6757913a2818" }, "from" : "2621226", "to" : "2642201", "distance" : 868 }
{ "_id" : { "$oid" : "54bbe98344ae6757913a2819" }, "from" : "2642201", "to" : "2642203", "distance" : 681 }
{ "_id" : { "$oid" : "54bbe98344ae6757913a281a" }, "from" : "2642203", "to" : "2642205", "distance" : 425 }
{ "_id" : { "$oid" : "54bbe98344ae6757913a281b" }, "from" : "2642205", "to" : "2642207", "distance" : 1147 }
{ "_id" : { "$oid" : "54bbe98444ae6757913a281c" }, "from" : "2642207", "to" : "2642209", "distance" : 652 }
{ "_id" : { "$oid" : "54bbe98444ae6757913a281d" }, "from" : "2642209", "to" : "2645201", "distance" : 1652 }
{ "_id" : { "$oid" : "54bbe98444ae6757913a281e" }, "from" : "2645201", "to" : "2641211", "distance" : 418 }
{ "_id" : { "$oid" : "54bbe98544ae6757913a281f" }, "from" : "2641211", "to" : "2641213", "distance" : 632 }
{ "_id" : { "$oid" : "54bbe98544ae6757913a2820" }, "from" : "2641213", "to" : "2643201", "distance" : 815 }
{ "_id" : { "$oid" : "54bbe98644ae6757913a2821" }, "from" : "2643201", "to" : "2643206", "distance" : 1025 }
{ "_id" : { "$oid" : "54bbe98644ae6757913a2822" }, "from" : "2643206", "to" : "6120203", "distance" : 973 }
{ "_id" : { "$oid" : "54bbe98644ae6757913a2823" }, "from" : "6120203", "to" : "6120205", "distance" : 764 }
{ "_id" : { "$oid" : "54bbe98744ae6757913a2824" }, "from" : "6120205", "to" : "6170201", "distance" : 956 }
{ "_id" : { "$oid" : "54bbe98744ae6757913a2825" }, "from" : "6170201", "to" : "6170203", "distance" : 577 }
{ "_id" : { "$oid" : "54bbe98844ae6757913a2826" }, "from" : "6170203", "to" : "6170205", "distance" : 685 }
{ "_id" : { "$oid" : "54bbe98844ae6757913a2827" }, "from" : "6170205", "to" : "6170207", "distance" : 735 }
{ "_id" : { "$oid" : "54bbe98844ae6757913a2828" }, "from" : "6170207", "to" : "6170252", "distance" : 604 }
{ "_id" : { "$oid" : "54bbe98944ae6757913a2829" }, "from" : "6170252", "to" : "6170254", "distance" : 609 }
{ "_id" : { "$oid" : "54bbe98944ae6757913a282a" }, "from" : "6170254", "to" : "6170253", "distance" : 603 }
{ "_id" : { "$oid" : "54bbe98a44ae6757913a282b" }, "from" : "4530240", "to" : "4530248", "distance" : 610 }
{ "_id" : { "$oid" : "54bbe98a44ae6757913a282c" }, "from" : "4530248", "to" : "4530210", "distance" : 308 }
{ "_id" : { "$oid" : "54bbe98b44ae6757913a282d" }, "from" : "4530210", "to" : "4530223", "distance" : 470 }
{ "_id" : { "$oid" : "54bbe98b44ae6757913a282e" }, "from" : "4530223", "to" : "4530227", "distance" : 564 }
{ "_id" : { "$oid" : "54bbe98b44ae6757913a282f" }, "from" : "4530227", "to" : "4530244", "distance" : 423 }
{ "_id" : { "$oid" : "54bbe98c44ae6757913a2830" }, "from" : "4530244", "to" : "4530221", "distance" : 1255 }
{ "_id" : { "$oid" : "54bbe98c44ae6757913a2831" }, "from" : "4530221", "to" : "4520267", "distance" : 810 }
{ "_id" : { "$oid" : "54bbe98d44ae6757913a2832" }, "from" : "4520267", "to" : "4520265", "distance" : 427 }
{ "_id" : { "$oid" : "54bbe98d44ae6757913a2833" }, "from" : "4520265", "to" : "4520233", "distance" : 131 }
{ "_id" : { "$oid" : "54bbe98d44ae6757913a2834" }, "from" : "4520233", "to" : "4520220", "distance" : 1269 }
{ "_id" : { "$oid" : "54bbe98e44ae6757913a2835" }, "from" : "4520220", "to" : "4510264", "distance" : 6497 }
{ "_id" : { "$oid" : "54bbe98e44ae6757913a2836" }, "from" : "4510264", "to" : "4510216", "distance" : 897 }
{ "_id" : { "$oid" : "54bbe98f44ae6757913a2837" }, "from" : "4510216", "to" : "4510255", "distance" : 270 }
{ "_id" : { "$oid" : "54bbe98f44ae6757913a2838" }, "from" : "4510255", "to" : "4510236", "distance" : 702 }
{ "_id" : { "$oid" : "54bbe98f44ae6757913a2839" }, "from" : "4510236", "to" : "4520215", "distance" : 455 }
{ "_id" : { "$oid" : "54bbe99044ae6757913a283a" }, "from" : "4520215", "to" : "4510258", "distance" : 199 }
{ "_id" : { "$oid" : "54bbe99044ae6757913a283b" }, "from" : "4510258", "to" : "4410296", "distance" : 656 }
{ "_id" : { "$oid" : "54bbe99144ae6757913a283c" }, "from" : "4410296", "to" : "4410298", "distance" : 758 }
{ "_id" : { "$oid" : "54bbe99144ae6757913a283d" }, "from" : "4410298", "to" : "4410214", "distance" : 847 }
{ "_id" : { "$oid" : "54bbe99144ae6757913a283e" }, "from" : "4410214", "to" : "4410209", "distance" : 991 }
{ "_id" : { "$oid" : "54bbe99244ae6757913a283f" }, "from" : "4410209", "to" : "4210204", "distance" : 1404 }
{ "_id" : { "$oid" : "54bbe99244ae6757913a2840" }, "from" : "4210204", "to" : "4210202", "distance" : 273 }
{ "_id" : { "$oid" : "54bbe99344ae6757913a2841" }, "from" : "4210202", "to" : "4180228", "distance" : 472 }
{ "_id" : { "$oid" : "54bbe99344ae6757913a2842" }, "from" : "4180228", "to" : "4170278", "distance" : 400 }
{ "_id" : { "$oid" : "54bbe99344ae6757913a2843" }, "from" : "4170278", "to" : "4170234", "distance" : 167 }
{ "_id" : { "$oid" : "54bbe99444ae6757913a2844" }, "from" : "4170234", "to" : "4170242", "distance" : 485 }
{ "_id" : { "$oid" : "54bbe99444ae6757913a2845" }, "from" : "4170242", "to" : "4170236", "distance" : 451 }
{ "_id" : { "$oid" : "54bbe99444ae6757913a2846" }, "from" : "4170236", "to" : "4170231", "distance" : 354 }
{ "_id" : { "$oid" : "54bbe99544ae6757913a2847" }, "from" : "4170231", "to" : "4140248", "distance" : 289 }
{ "_id" : { "$oid" : "54bbe99544ae6757913a2848" }, "from" : "4140248", "to" : "4140246", "distance" : 711 }
{ "_id" : { "$oid" : "54bbe99644ae6757913a2849" }, "from" : "4140246", "to" : "4140231", "distance" : 344 }
{ "_id" : { "$oid" : "54bbe99644ae6757913a284a" }, "from" : "4140231", "to" : "4140229", "distance" : 647 }
{ "_id" : { "$oid" : "54bbe99644ae6757913a284b" }, "from" : "4140229", "to" : "4140227", "distance" : 487 }
{ "_id" : { "$oid" : "54bbe99744ae6757913a284c" }, "from" : "4140227", "to" : "4120214", "distance" : 826 }
{ "_id" : { "$oid" : "54bbe99744ae6757913a284d" }, "from" : "4120214", "to" : "4120216", "distance" : 806 }
{ "_id" : { "$oid" : "54bbe99844ae6757913a284e" }, "from" : "4120216", "to" : "2715295", "distance" : 1525 }
{ "_id" : { "$oid" : "54bbe99844ae6757913a284f" }, "from" : "2715295", "to" : "2715210", "distance" : 745 }
{ "_id" : { "$oid" : "54bbe99844ae6757913a2850" }, "from" : "2715210", "to" : "2714230", "distance" : 615 }
{ "_id" : { "$oid" : "54bbe99944ae6757913a2851" }, "from" : "2714230", "to" : "2714233", "distance" : 251 }
{ "_id" : { "$oid" : "54bbe99944ae6757913a2852" }, "from" : "2714233", "to" : "2712220", "distance" : 498 }
{ "_id" : { "$oid" : "54bbe99a44ae6757913a2853" }, "from" : "2712220", "to" : "2712216", "distance" : 355 }
{ "_id" : { "$oid" : "54bbe99a44ae6757913a2854" }, "from" : "2712216", "to" : "2712223", "distance" : 275 }
{ "_id" : { "$oid" : "54bbe99a44ae6757913a2855" }, "from" : "2712223", "to" : "2712221", "distance" : 618 }
{ "_id" : { "$oid" : "54bbe99b44ae6757913a2856" }, "from" : "2712221", "to" : "2632211", "distance" : 1917 }
{ "_id" : { "$oid" : "54bbe99b44ae6757913a2857" }, "from" : "2632211", "to" : "2634278", "distance" : 2414 }
{ "_id" : { "$oid" : "54bbe99b44ae6757913a2858" }, "from" : "2634278", "to" : "2631219", "distance" : 874 }
{ "_id" : { "$oid" : "54bbe99c44ae6757913a2859" }, "from" : "2631219", "to" : "2611264", "distance" : 342 }
{ "_id" : { "$oid" : "54bbe99c44ae6757913a285a" }, "from" : "2611264", "to" : "2611202", "distance" : 428 }
{ "_id" : { "$oid" : "54bbe99d44ae6757913a285b" }, "from" : "2611257", "to" : "2611203", "distance" : 408 }
{ "_id" : { "$oid" : "54bbe99d44ae6757913a285c" }, "from" : "2611203", "to" : "2631218", "distance" : 512 }
{ "_id" : { "$oid" : "54bbe99e44ae6757913a285d" }, "from" : "2631218", "to" : "2631217", "distance" : 208 }
{ "_id" : { "$oid" : "54bbe99e44ae6757913a285e" }, "from" : "2631217", "to" : "2614286", "distance" : 513 }
{ "_id" : { "$oid" : "54bbe99e44ae6757913a285f" }, "from" : "2614286", "to" : "2632210", "distance" : 2892 }
{ "_id" : { "$oid" : "54bbe99f44ae6757913a2860" }, "from" : "2632210", "to" : "2712222", "distance" : 2082 }
{ "_id" : { "$oid" : "54bbe99f44ae6757913a2861" }, "from" : "2712222", "to" : "2712215", "distance" : 576 }
{ "_id" : { "$oid" : "54bbe9a044ae6757913a2862" }, "from" : "2712215", "to" : "2712217", "distance" : 251 }
{ "_id" : { "$oid" : "54bbe9a044ae6757913a2863" }, "from" : "2712217", "to" : "2712219", "distance" : 501 }
{ "_id" : { "$oid" : "54bbe9a044ae6757913a2864" }, "from" : "2712219", "to" : "2714229", "distance" : 543 }
{ "_id" : { "$oid" : "54bbe9a144ae6757913a2865" }, "from" : "2714229", "to" : "2714218", "distance" : 271 }
{ "_id" : { "$oid" : "54bbe9a144ae6757913a2866" }, "from" : "2714218", "to" : "2715293", "distance" : 598 }
{ "_id" : { "$oid" : "54bbe9a244ae6757913a2867" }, "from" : "2715293", "to" : "2715294", "distance" : 563 }
{ "_id" : { "$oid" : "54bbe9a244ae6757913a2868" }, "from" : "2715294", "to" : "2715230", "distance" : 241 }
{ "_id" : { "$oid" : "54bbe9a244ae6757913a2869" }, "from" : "2715230", "to" : "4120217", "distance" : 1654 }
{ "_id" : { "$oid" : "54bbe9a344ae6757913a286a" }, "from" : "4120217", "to" : "4120215", "distance" : 696 }
{ "_id" : { "$oid" : "54bbe9a344ae6757913a286b" }, "from" : "4120215", "to" : "4140226", "distance" : 651 }
{ "_id" : { "$oid" : "54bbe9a444ae6757913a286c" }, "from" : "4140226", "to" : "4140228", "distance" : 528 }
{ "_id" : { "$oid" : "54bbe9a444ae6757913a286d" }, "from" : "4140228", "to" : "4140230", "distance" : 824 }
{ "_id" : { "$oid" : "54bbe9a444ae6757913a286e" }, "from" : "4140230", "to" : "4140247", "distance" : 334 }
{ "_id" : { "$oid" : "54bbe9a544ae6757913a286f" }, "from" : "4140247", "to" : "4140249", "distance" : 490 }
{ "_id" : { "$oid" : "54bbe9a544ae6757913a2870" }, "from" : "4140249", "to" : "4170214", "distance" : 348 }
{ "_id" : { "$oid" : "54bbe9a544ae6757913a2871" }, "from" : "4170214", "to" : "4170237", "distance" : 357 }
{ "_id" : { "$oid" : "54bbe9a644ae6757913a2872" }, "from" : "4170237", "to" : "4170239", "distance" : 526 }
{ "_id" : { "$oid" : "54bbe9a644ae6757913a2873" }, "from" : "4170239", "to" : "4170233", "distance" : 353 }
{ "_id" : { "$oid" : "54bbe9a744ae6757913a2874" }, "from" : "4170233", "to" : "4180232", "distance" : 260 }
{ "_id" : { "$oid" : "54bbe9a744ae6757913a2875" }, "from" : "4180232", "to" : "4180227", "distance" : 257 }
{ "_id" : { "$oid" : "54bbe9a744ae6757913a2876" }, "from" : "4180227", "to" : "4180212", "distance" : 260 }
{ "_id" : { "$oid" : "54bbe9a844ae6757913a2877" }, "from" : "4180212", "to" : "4210201", "distance" : 283 }
{ "_id" : { "$oid" : "54bbe9a844ae6757913a2878" }, "from" : "4210201", "to" : "4410208", "distance" : 1399 }
{ "_id" : { "$oid" : "54bbe9a944ae6757913a2879" }, "from" : "4410208", "to" : "4410213", "distance" : 856 }
{ "_id" : { "$oid" : "54bbe9a944ae6757913a287a" }, "from" : "4410213", "to" : "4410299", "distance" : 983 }
{ "_id" : { "$oid" : "54bbe9a944ae6757913a287b" }, "from" : "4410299", "to" : "4410297", "distance" : 836 }
{ "_id" : { "$oid" : "54bbe9aa44ae6757913a287c" }, "from" : "4410297", "to" : "4510247", "distance" : 700 }
{ "_id" : { "$oid" : "54bbe9aa44ae6757913a287d" }, "from" : "4510247", "to" : "4510235", "distance" : 324 }
{ "_id" : { "$oid" : "54bbe9ab44ae6757913a287e" }, "from" : "4510235", "to" : "4510240", "distance" : 312 }
{ "_id" : { "$oid" : "54bbe9ab44ae6757913a287f" }, "from" : "4510240", "to" : "4510254", "distance" : 1177 }
{ "_id" : { "$oid" : "54bbe9ab44ae6757913a2880" }, "from" : "4510254", "to" : "4510217", "distance" : 362 }
{ "_id" : { "$oid" : "54bbe9ac44ae6757913a2881" }, "from" : "4510217", "to" : "4510202", "distance" : 191 }
{ "_id" : { "$oid" : "54bbe9ac44ae6757913a2882" }, "from" : "4510202", "to" : "4510263", "distance" : 2814 }
{ "_id" : { "$oid" : "54bbe9ac44ae6757913a2883" }, "from" : "4510263", "to" : "4520239", "distance" : 2751 }
{ "_id" : { "$oid" : "54bbe9ad44ae6757913a2884" }, "from" : "4520239", "to" : "4520266", "distance" : 1815 }
{ "_id" : { "$oid" : "54bbe9ad44ae6757913a2885" }, "from" : "4520266", "to" : "4520268", "distance" : 203 }
{ "_id" : { "$oid" : "54bbe9ae44ae6757913a2886" }, "from" : "4520268", "to" : "4530227", "distance" : 420 }
{ "_id" : { "$oid" : "54bbe9ae44ae6757913a2887" }, "from" : "4530227", "to" : "4530217", "distance" : 423 }
{ "_id" : { "$oid" : "54bbe9ae44ae6757913a2888" }, "from" : "4530217", "to" : "4530222", "distance" : 560 }
{ "_id" : { "$oid" : "54bbe9af44ae6757913a2889" }, "from" : "4530222", "to" : "4530208", "distance" : 534 }
{ "_id" : { "$oid" : "54bbe9af44ae6757913a288a" }, "from" : "4530208", "to" : "4530229", "distance" : 716 }
{ "_id" : { "$oid" : "54bbe9b044ae6757913a288b" }, "from" : "4530229", "to" : "4530224", "distance" : 3212 }
{ "_id" : { "$oid" : "54bbe9b044ae6757913a288c" }, "from" : "4530224", "to" : "4530212", "distance" : 101 }
{ "_id" : { "$oid" : "54bbe9b144ae6757913a288d" }, "from" : "2631217", "to" : "2631280", "distance" : 510 }
{ "_id" : { "$oid" : "54bbe9b144ae6757913a288e" }, "from" : "2631280", "to" : "2631204", "distance" : 588 }
{ "_id" : { "$oid" : "54bbe9b144ae6757913a288f" }, "from" : "2631204", "to" : "2631202", "distance" : 656 }
{ "_id" : { "$oid" : "54bbe9b244ae6757913a2890" }, "from" : "2631202", "to" : "2152227", "distance" : 353 }
{ "_id" : { "$oid" : "54bbe9b244ae6757913a2891" }, "from" : "2152227", "to" : "2152243", "distance" : 686 }
{ "_id" : { "$oid" : "54bbe9b344ae6757913a2892" }, "from" : "2152243", "to" : "2152229", "distance" : 321 }
{ "_id" : { "$oid" : "54bbe9b344ae6757913a2893" }, "from" : "2152229", "to" : "2152231", "distance" : 204 }
{ "_id" : { "$oid" : "54bbe9b344ae6757913a2894" }, "from" : "2152231", "to" : "2152233", "distance" : 373 }
{ "_id" : { "$oid" : "54bbe9b444ae6757913a2895" }, "from" : "2152233", "to" : "2152235", "distance" : 224 }
{ "_id" : { "$oid" : "54bbe9b444ae6757913a2896" }, "from" : "2152235", "to" : "2152245", "distance" : 210 }
{ "_id" : { "$oid" : "54bbe9b444ae6757913a2897" }, "from" : "2152245", "to" : "2152237", "distance" : 123 }
{ "_id" : { "$oid" : "54bbe9b544ae6757913a2898" }, "from" : "2152237", "to" : "2152241", "distance" : 409 }
{ "_id" : { "$oid" : "54bbe9b544ae6757913a2899" }, "from" : "2152241", "to" : "2142224", "distance" : 394 }
{ "_id" : { "$oid" : "54bbe9b644ae6757913a289a" }, "from" : "2142224", "to" : "2142222", "distance" : 304 }
{ "_id" : { "$oid" : "54bbe9b644ae6757913a289b" }, "from" : "2142222", "to" : "2141205", "distance" : 428 }
{ "_id" : { "$oid" : "54bbe9b644ae6757913a289c" }, "from" : "2141205", "to" : "2141207", "distance" : 527 }
{ "_id" : { "$oid" : "54bbe9b744ae6757913a289d" }, "from" : "2141207", "to" : "2142209", "distance" : 324 }
{ "_id" : { "$oid" : "54bbe9b744ae6757913a289e" }, "from" : "2142209", "to" : "2143211", "distance" : 448 }
{ "_id" : { "$oid" : "54bbe9b844ae6757913a289f" }, "from" : "2143211", "to" : "2143214", "distance" : 443 }
{ "_id" : { "$oid" : "54bbe9b844ae6757913a28a0" }, "from" : "2143214", "to" : "2143216", "distance" : 356 }
{ "_id" : { "$oid" : "54bbe9b844ae6757913a28a1" }, "from" : "2143216", "to" : "2143218", "distance" : 360 }
{ "_id" : { "$oid" : "54bbe9b944ae6757913a28a2" }, "from" : "2143218", "to" : "4100210", "distance" : 333 }
{ "_id" : { "$oid" : "54bbe9b944ae6757913a28a3" }, "from" : "4100210", "to" : "4120290", "distance" : 925 }
{ "_id" : { "$oid" : "54bbe9ba44ae6757913a28a4" }, "from" : "4120290", "to" : "4120288", "distance" : 260 }
{ "_id" : { "$oid" : "54bbe9ba44ae6757913a28a5" }, "from" : "4120288", "to" : "4120206", "distance" : 373 }
{ "_id" : { "$oid" : "54bbe9ba44ae6757913a28a6" }, "from" : "4120206", "to" : "4120204", "distance" : 448 }
{ "_id" : { "$oid" : "54bbe9bb44ae6757913a28a7" }, "from" : "4120204", "to" : "4120202", "distance" : 365 }
{ "_id" : { "$oid" : "54bbe9bb44ae6757913a28a8" }, "from" : "4120202", "to" : "4130207", "distance" : 334 }
{ "_id" : { "$oid" : "54bbe9bb44ae6757913a28a9" }, "from" : "4130207", "to" : "4130209", "distance" : 642 }
{ "_id" : { "$oid" : "54bbe9bc44ae6757913a28aa" }, "from" : "4130209", "to" : "4150201", "distance" : 586 }
{ "_id" : { "$oid" : "54bbe9bc44ae6757913a28ab" }, "from" : "4150201", "to" : "4150297", "distance" : 324 }
{ "_id" : { "$oid" : "54bbe9bd44ae6757913a28ac" }, "from" : "4150297", "to" : "4150266", "distance" : 436 }
{ "_id" : { "$oid" : "54bbe9bd44ae6757913a28ad" }, "from" : "4150266", "to" : "4150206", "distance" : 547 }
{ "_id" : { "$oid" : "54bbe9bd44ae6757913a28ae" }, "from" : "4150206", "to" : "4150208", "distance" : 355 }
{ "_id" : { "$oid" : "54bbe9be44ae6757913a28af" }, "from" : "4150208", "to" : "4150210", "distance" : 636 }
{ "_id" : { "$oid" : "54bbe9be44ae6757913a28b0" }, "from" : "4150210", "to" : "4150225", "distance" : 332 }
{ "_id" : { "$oid" : "54bbe9bf44ae6757913a28b1" }, "from" : "4150225", "to" : "4170201", "distance" : 523 }
{ "_id" : { "$oid" : "54bbe9bf44ae6757913a28b2" }, "from" : "4170201", "to" : "4170202", "distance" : 225 }
{ "_id" : { "$oid" : "54bbe9bf44ae6757913a28b3" }, "from" : "4170202", "to" : "4170204", "distance" : 414 }
{ "_id" : { "$oid" : "54bbe9c044ae6757913a28b4" }, "from" : "4170204", "to" : "4170248", "distance" : 316 }
{ "_id" : { "$oid" : "54bbe9c044ae6757913a28b5" }, "from" : "2421217", "to" : "2413228", "distance" : 2537 }
{ "_id" : { "$oid" : "54bbe9c144ae6757913a28b6" }, "from" : "2413228", "to" : "6020258", "distance" : 860 }
{ "_id" : { "$oid" : "54bbe9c144ae6757913a28b7" }, "from" : "6020258", "to" : "6020256", "distance" : 512 }
{ "_id" : { "$oid" : "54bbe9c244ae6757913a28b8" }, "from" : "6020256", "to" : "6020254", "distance" : 314 }
{ "_id" : { "$oid" : "54bbe9c244ae6757913a28b9" }, "from" : "6020254", "to" : "6020252", "distance" : 485 }
{ "_id" : { "$oid" : "54bbe9c244ae6757913a28ba" }, "from" : "6020252", "to" : "6020250", "distance" : 452 }
{ "_id" : { "$oid" : "54bbe9c344ae6757913a28bb" }, "from" : "6020250", "to" : "6020260", "distance" : 509 }
{ "_id" : { "$oid" : "54bbe9c344ae6757913a28bc" }, "from" : "6050253", "to" : "6040291", "distance" : 898 }
{ "_id" : { "$oid" : "54bbe9c444ae6757913a28bd" }, "from" : "6020259", "to" : "6020249", "distance" : 555 }
{ "_id" : { "$oid" : "54bbe9c444ae6757913a28be" }, "from" : "6020249", "to" : "6020251", "distance" : 525 }
{ "_id" : { "$oid" : "54bbe9c544ae6757913a28bf" }, "from" : "6020251", "to" : "6020253", "distance" : 484 }
{ "_id" : { "$oid" : "54bbe9c544ae6757913a28c0" }, "from" : "6020253", "to" : "6020255", "distance" : 379 }
{ "_id" : { "$oid" : "54bbe9c644ae6757913a28c1" }, "from" : "6020255", "to" : "6020257", "distance" : 491 }
{ "_id" : { "$oid" : "54bbe9c644ae6757913a28c2" }, "from" : "6020257", "to" : "2413229", "distance" : 674 }
{ "_id" : { "$oid" : "54bbe9c644ae6757913a28c3" }, "from" : "2413229", "to" : "2443227", "distance" : 2907 }
{ "_id" : { "$oid" : "54bbe9c744ae6757913a28c4" }, "from" : "6050253", "to" : "6040295", "distance" : 2030 }
{ "_id" : { "$oid" : "54bbe9c744ae6757913a28c5" }, "from" : "6040295", "to" : "6040238", "distance" : 1792 }
{ "_id" : { "$oid" : "54bbe9c844ae6757913a28c6" }, "from" : "6040238", "to" : "6040237", "distance" : 540 }
{ "_id" : { "$oid" : "54bbe9c844ae6757913a28c7" }, "from" : "6040237", "to" : "6040234", "distance" : 356 }
{ "_id" : { "$oid" : "54bbe9c944ae6757913a28c8" }, "from" : "6040234", "to" : "6050219", "distance" : 704 }
{ "_id" : { "$oid" : "54bbe9c944ae6757913a28c9" }, "from" : "6050219", "to" : "6050215", "distance" : 363 }
{ "_id" : { "$oid" : "54bbe9c944ae6757913a28ca" }, "from" : "6050215", "to" : "6050214", "distance" : 446 }
{ "_id" : { "$oid" : "54bbe9ca44ae6757913a28cb" }, "from" : "6050214", "to" : "6050212", "distance" : 653 }
{ "_id" : { "$oid" : "54bbe9ca44ae6757913a28cc" }, "from" : "6050212", "to" : "6050210", "distance" : 519 }
{ "_id" : { "$oid" : "54bbe9cb44ae6757913a28cd" }, "from" : "6050210", "to" : "6050217", "distance" : 908 }
{ "_id" : { "$oid" : "54bbe9cb44ae6757913a28ce" }, "from" : "6050217", "to" : "6200203", "distance" : 3895 }
{ "_id" : { "$oid" : "54bbe9cb44ae6757913a28cf" }, "from" : "6200203", "to" : "6200202", "distance" : 1983 }
{ "_id" : { "$oid" : "54bbe9cc44ae6757913a28d0" }, "from" : "6200202", "to" : "6300201", "distance" : 3406 }
{ "_id" : { "$oid" : "54bbe9cc44ae6757913a28d1" }, "from" : "6300201", "to" : "6300202", "distance" : 9646 }
{ "_id" : { "$oid" : "54bbe9cd44ae6757913a28d2" }, "from" : "6300201", "to" : "6070230", "distance" : 5892 }
{ "_id" : { "$oid" : "54bbe9cd44ae6757913a28d3" }, "from" : "6070230", "to" : "6070232", "distance" : 462 }
{ "_id" : { "$oid" : "54bbe9ce44ae6757913a28d4" }, "from" : "6070232", "to" : "6070231", "distance" : 451 }
{ "_id" : { "$oid" : "54bbe9ce44ae6757913a28d5" }, "from" : "6070231", "to" : "6070228", "distance" : 533 }
{ "_id" : { "$oid" : "54bbe9ce44ae6757913a28d6" }, "from" : "6070228", "to" : "6050201", "distance" : 1270 }
{ "_id" : { "$oid" : "54bbe9cf44ae6757913a28d7" }, "from" : "6050201", "to" : "6050204", "distance" : 351 }
{ "_id" : { "$oid" : "54bbe9cf44ae6757913a28d8" }, "from" : "6050204", "to" : "6050205", "distance" : 880 }
{ "_id" : { "$oid" : "54bbe9cf44ae6757913a28d9" }, "from" : "6050205", "to" : "6040209", "distance" : 1729 }
{ "_id" : { "$oid" : "54bbe9d044ae6757913a28da" }, "from" : "6040209", "to" : "6040212", "distance" : 743 }
{ "_id" : { "$oid" : "54bbe9d044ae6757913a28db" }, "from" : "6040212", "to" : "6040285", "distance" : 895 }
{ "_id" : { "$oid" : "54bbe9d144ae6757913a28dc" }, "from" : "6040285", "to" : "6040260", "distance" : 560 }
{ "_id" : { "$oid" : "54bbe9d144ae6757913a28dd" }, "from" : "6040295", "to" : "6040261", "distance" : 1214 }
{ "_id" : { "$oid" : "54bbe9d244ae6757913a28de" }, "from" : "6040261", "to" : "6040214", "distance" : 250 }
{ "_id" : { "$oid" : "54bbe9d244ae6757913a28df" }, "from" : "6040214", "to" : "6040213", "distance" : 869 }
{ "_id" : { "$oid" : "54bbe9d344ae6757913a28e0" }, "from" : "6040213", "to" : "6040210", "distance" : 843 }
{ "_id" : { "$oid" : "54bbe9d344ae6757913a28e1" }, "from" : "6040210", "to" : "6050206", "distance" : 1765 }
{ "_id" : { "$oid" : "54bbe9d344ae6757913a28e2" }, "from" : "6050206", "to" : "6050203", "distance" : 861 }
{ "_id" : { "$oid" : "54bbe9d444ae6757913a28e3" }, "from" : "6050203", "to" : "6050202", "distance" : 342 }
{ "_id" : { "$oid" : "54bbe9d444ae6757913a28e4" }, "from" : "6050202", "to" : "6070229", "distance" : 1114 }
{ "_id" : { "$oid" : "54bbe9d444ae6757913a28e5" }, "from" : "6070229", "to" : "6070230", "distance" : 484 }
{ "_id" : { "$oid" : "54bbe9d544ae6757913a28e6" }, "from" : "6070231", "to" : "6300201", "distance" : 5975 }
{ "_id" : { "$oid" : "54bbe9d544ae6757913a28e7" }, "from" : "6300204", "to" : "6300202", "distance" : 4840 }
{ "_id" : { "$oid" : "54bbe9d644ae6757913a28e8" }, "from" : "6300202", "to" : "6070228", "distance" : 10476 }
{ "_id" : { "$oid" : "54bbe9d744ae6757913a28e9" }, "from" : "6070229", "to" : "6300202", "distance" : 10493 }
{ "_id" : { "$oid" : "54bbe9d744ae6757913a28ea" }, "from" : "6300202", "to" : "6300204", "distance" : 4840 }
{ "_id" : { "$oid" : "54bbe9d944ae6757913a28eb" }, "from" : "6070228", "to" : "6070233", "distance" : 3118 }
{ "_id" : { "$oid" : "54bbe9d944ae6757913a28ec" }, "from" : "6070233", "to" : "6070213", "distance" : 836 }
{ "_id" : { "$oid" : "54bbe9da44ae6757913a28ed" }, "from" : "6070234", "to" : "6070238", "distance" : 1011 }
{ "_id" : { "$oid" : "54bbe9da44ae6757913a28ee" }, "from" : "6070238", "to" : "6050202", "distance" : 1961 }
{ "_id" : { "$oid" : "54bbe9db44ae6757913a28ef" }, "from" : "9300201", "to" : "9300203", "distance" : 11235 }
{ "_id" : { "$oid" : "54bbe9db44ae6757913a28f0" }, "from" : "9300203", "to" : "9228211", "distance" : 7826 }
{ "_id" : { "$oid" : "54bbe9db44ae6757913a28f1" }, "from" : "9228211", "to" : "9228210", "distance" : 578 }
{ "_id" : { "$oid" : "54bbe9dc44ae6757913a28f2" }, "from" : "9228210", "to" : "9228209", "distance" : 350 }
{ "_id" : { "$oid" : "54bbe9dc44ae6757913a28f3" }, "from" : "9228209", "to" : "9228208", "distance" : 302 }
{ "_id" : { "$oid" : "54bbe9dd44ae6757913a28f4" }, "from" : "9228208", "to" : "9228207", "distance" : 375 }
{ "_id" : { "$oid" : "54bbe9dd44ae6757913a28f5" }, "from" : "9228207", "to" : "9228206", "distance" : 442 }
{ "_id" : { "$oid" : "54bbe9dd44ae6757913a28f6" }, "from" : "9228206", "to" : "9228204", "distance" : 1128 }
{ "_id" : { "$oid" : "54bbe9de44ae6757913a28f7" }, "from" : "9228204", "to" : "9228201", "distance" : 436 }
{ "_id" : { "$oid" : "54bbe9de44ae6757913a28f8" }, "from" : "9228201", "to" : "9223209", "distance" : 377 }
{ "_id" : { "$oid" : "54bbe9df44ae6757913a28f9" }, "from" : "9223209", "to" : "9223206", "distance" : 445 }
{ "_id" : { "$oid" : "54bbe9df44ae6757913a28fa" }, "from" : "9223206", "to" : "9222238", "distance" : 1012 }
{ "_id" : { "$oid" : "54bbe9df44ae6757913a28fb" }, "from" : "9222238", "to" : "9222202", "distance" : 361 }
{ "_id" : { "$oid" : "54bbe9e044ae6757913a28fc" }, "from" : "1201111", "to" : "1201109", "distance" : 237 }
{ "_id" : { "$oid" : "54bbe9e044ae6757913a28fd" }, "from" : "1201109", "to" : "1201132", "distance" : 283 }
{ "_id" : { "$oid" : "54bbe9e144ae6757913a28fe" }, "from" : "1201132", "to" : "1201139", "distance" : 251 }
{ "_id" : { "$oid" : "54bbe9e144ae6757913a28ff" }, "from" : "1201139", "to" : "1201113", "distance" : 448 }
{ "_id" : { "$oid" : "54bbe9e244ae6757913a2900" }, "from" : "1201113", "to" : "1201107", "distance" : 129 }
{ "_id" : { "$oid" : "54bbe9e244ae6757913a2901" }, "from" : "6040292", "to" : "6050252", "distance" : 653 }
{ "_id" : { "$oid" : "54bbe9e344ae6757913a2902" }, "from" : "6020210", "to" : "6020217", "distance" : 507 }
{ "_id" : { "$oid" : "54bbe9e344ae6757913a2903" }, "from" : "6020217", "to" : "6020224", "distance" : 469 }
{ "_id" : { "$oid" : "54bbe9e344ae6757913a2904" }, "from" : "6020224", "to" : "6020228", "distance" : 412 }
{ "_id" : { "$oid" : "54bbe9e444ae6757913a2905" }, "from" : "6020228", "to" : "6020231", "distance" : 646 }
{ "_id" : { "$oid" : "54bbe9e444ae6757913a2906" }, "from" : "6020231", "to" : "6020235", "distance" : 288 }
{ "_id" : { "$oid" : "54bbe9e544ae6757913a2907" }, "from" : "6020235", "to" : "6020238", "distance" : 354 }
{ "_id" : { "$oid" : "54bbe9e544ae6757913a2908" }, "from" : "6020238", "to" : "6020240", "distance" : 636 }
{ "_id" : { "$oid" : "54bbe9e544ae6757913a2909" }, "from" : "6020240", "to" : "6170223", "distance" : 271 }
{ "_id" : { "$oid" : "54bbe9e644ae6757913a290a" }, "from" : "6170223", "to" : "2512234", "distance" : 642 }
{ "_id" : { "$oid" : "54bbe9e644ae6757913a290b" }, "from" : "2512234", "to" : "2512232", "distance" : 482 }
{ "_id" : { "$oid" : "54bbe9e744ae6757913a290c" }, "from" : "2512232", "to" : "2512230", "distance" : 382 }
{ "_id" : { "$oid" : "54bbe9e744ae6757913a290d" }, "from" : "2512230", "to" : "2512228", "distance" : 340 }
{ "_id" : { "$oid" : "54bbe9e744ae6757913a290e" }, "from" : "2512228", "to" : "2512207", "distance" : 252 }
{ "_id" : { "$oid" : "54bbe9e844ae6757913a290f" }, "from" : "2512207", "to" : "2511240", "distance" : 889 }
{ "_id" : { "$oid" : "54bbe9e844ae6757913a2910" }, "from" : "2511240", "to" : "2511234", "distance" : 182 }
{ "_id" : { "$oid" : "54bbe9e944ae6757913a2911" }, "from" : "2511234", "to" : "2511238", "distance" : 344 }
{ "_id" : { "$oid" : "54bbe9e944ae6757913a2912" }, "from" : "2511238", "to" : "2511237", "distance" : 106 }
{ "_id" : { "$oid" : "54bbe9ea44ae6757913a2913" }, "from" : "2511237", "to" : "2511233", "distance" : 220 }
{ "_id" : { "$oid" : "54bbe9ea44ae6757913a2914" }, "from" : "2511233", "to" : "2511239", "distance" : 255 }
{ "_id" : { "$oid" : "54bbe9ea44ae6757913a2915" }, "from" : "2511239", "to" : "2511224", "distance" : 335 }
{ "_id" : { "$oid" : "54bbe9eb44ae6757913a2916" }, "from" : "2511224", "to" : "2511216", "distance" : 227 }
{ "_id" : { "$oid" : "54bbe9eb44ae6757913a2917" }, "from" : "2511216", "to" : "2512231", "distance" : 525 }
{ "_id" : { "$oid" : "54bbe9eb44ae6757913a2918" }, "from" : "2512231", "to" : "2512233", "distance" : 431 }
{ "_id" : { "$oid" : "54bbe9ec44ae6757913a2919" }, "from" : "2512233", "to" : "2512237", "distance" : 617 }
{ "_id" : { "$oid" : "54bbe9ec44ae6757913a291a" }, "from" : "2512237", "to" : "2512239", "distance" : 344 }
{ "_id" : { "$oid" : "54bbe9ed44ae6757913a291b" }, "from" : "2512239", "to" : "6170222", "distance" : 427 }
{ "_id" : { "$oid" : "54bbe9ed44ae6757913a291c" }, "from" : "6170222", "to" : "6020241", "distance" : 355 }
{ "_id" : { "$oid" : "54bbe9ed44ae6757913a291d" }, "from" : "6020241", "to" : "6020239", "distance" : 577 }
{ "_id" : { "$oid" : "54bbe9ee44ae6757913a291e" }, "from" : "6020239", "to" : "6020234", "distance" : 530 }
{ "_id" : { "$oid" : "54bbe9ee44ae6757913a291f" }, "from" : "6020234", "to" : "6020230", "distance" : 303 }
{ "_id" : { "$oid" : "54bbe9ee44ae6757913a2920" }, "from" : "6020230", "to" : "6020229", "distance" : 410 }
{ "_id" : { "$oid" : "54bbe9ef44ae6757913a2921" }, "from" : "6020229", "to" : "6020227", "distance" : 425 }
{ "_id" : { "$oid" : "54bbe9ef44ae6757913a2922" }, "from" : "6020227", "to" : "6020218", "distance" : 469 }
{ "_id" : { "$oid" : "54bbe9f044ae6757913a2923" }, "from" : "6020218", "to" : "6020209", "distance" : 682 }
{ "_id" : { "$oid" : "54bbe9f044ae6757913a2924" }, "from" : "9222202", "to" : "9222231", "distance" : 340 }
{ "_id" : { "$oid" : "54bbe9f144ae6757913a2925" }, "from" : "9222231", "to" : "9223204", "distance" : 1067 }
{ "_id" : { "$oid" : "54bbe9f144ae6757913a2926" }, "from" : "9223204", "to" : "9223202", "distance" : 294 }
{ "_id" : { "$oid" : "54bbe9f144ae6757913a2927" }, "from" : "9223202", "to" : "9223201", "distance" : 335 }
{ "_id" : { "$oid" : "54bbe9f244ae6757913a2928" }, "from" : "9223201", "to" : "9222230", "distance" : 614 }
{ "_id" : { "$oid" : "54bbe9f244ae6757913a2929" }, "from" : "9222230", "to" : "9222227", "distance" : 403 }
{ "_id" : { "$oid" : "54bbe9f344ae6757913a292a" }, "from" : "9222227", "to" : "9222219", "distance" : 340 }
{ "_id" : { "$oid" : "54bbe9f344ae6757913a292b" }, "from" : "9222219", "to" : "9222212", "distance" : 502 }
{ "_id" : { "$oid" : "54bbe9f344ae6757913a292c" }, "from" : "9222212", "to" : "9222205", "distance" : 647 }
{ "_id" : { "$oid" : "54bbe9f444ae6757913a292d" }, "from" : "9222205", "to" : "9216211", "distance" : 596 }
{ "_id" : { "$oid" : "54bbe9f444ae6757913a292e" }, "from" : "9216211", "to" : "9216209", "distance" : 467 }
{ "_id" : { "$oid" : "54bbe9f544ae6757913a292f" }, "from" : "9216209", "to" : "9216207", "distance" : 754 }
{ "_id" : { "$oid" : "54bbe9f544ae6757913a2930" }, "from" : "9216207", "to" : "9216205", "distance" : 447 }
{ "_id" : { "$oid" : "54bbe9f544ae6757913a2931" }, "from" : "9216205", "to" : "9216202", "distance" : 641 }
{ "_id" : { "$oid" : "54bbe9f644ae6757913a2932" }, "from" : "9216202", "to" : "9214224", "distance" : 727 }
{ "_id" : { "$oid" : "54bbe9f644ae6757913a2933" }, "from" : "9214224", "to" : "9214222", "distance" : 307 }
{ "_id" : { "$oid" : "54bbe9f744ae6757913a2934" }, "from" : "9214222", "to" : "9214220", "distance" : 604 }
{ "_id" : { "$oid" : "54bbe9f744ae6757913a2935" }, "from" : "9214220", "to" : "9214218", "distance" : 632 }
{ "_id" : { "$oid" : "54bbe9f744ae6757913a2936" }, "from" : "9214218", "to" : "9214212", "distance" : 1224 }
{ "_id" : { "$oid" : "54bbe9f844ae6757913a2937" }, "from" : "9214212", "to" : "4860209", "distance" : 648 }
{ "_id" : { "$oid" : "54bbe9f844ae6757913a2938" }, "from" : "4860209", "to" : "4850201", "distance" : 606 }
{ "_id" : { "$oid" : "54bbe9f844ae6757913a2939" }, "from" : "4850201", "to" : "1362142", "distance" : 15731 }
{ "_id" : { "$oid" : "54bbe9f944ae6757913a293a" }, "from" : "1362142", "to" : "1240123", "distance" : 3084 }
{ "_id" : { "$oid" : "54bbe9f944ae6757913a293b" }, "from" : "1240123", "to" : "1240106", "distance" : 667 }
{ "_id" : { "$oid" : "54bbe9fa44ae6757913a293c" }, "from" : "1240106", "to" : "1240118", "distance" : 354 }
{ "_id" : { "$oid" : "54bbe9fa44ae6757913a293d" }, "from" : "1240118", "to" : "1220104", "distance" : 995 }
{ "_id" : { "$oid" : "54bbe9fa44ae6757913a293e" }, "from" : "1220104", "to" : "1220102", "distance" : 444 }
{ "_id" : { "$oid" : "54bbe9fb44ae6757913a293f" }, "from" : "1220102", "to" : "1113229", "distance" : 613 }
{ "_id" : { "$oid" : "54bbe9fb44ae6757913a2940" }, "from" : "1113229", "to" : "1112126", "distance" : 676 }
{ "_id" : { "$oid" : "54bbe9fc44ae6757913a2941" }, "from" : "1112126", "to" : "1111114", "distance" : 466 }
{ "_id" : { "$oid" : "54bbe9fc44ae6757913a2942" }, "from" : "1111114", "to" : "1020201", "distance" : 1010 }
{ "_id" : { "$oid" : "54bbe9fd44ae6757913a2943" }, "from" : "1020122", "to" : "1111112", "distance" : 1287 }
{ "_id" : { "$oid" : "54bbe9fd44ae6757913a2944" }, "from" : "1111112", "to" : "1100125", "distance" : 615 }
{ "_id" : { "$oid" : "54bbe9fd44ae6757913a2945" }, "from" : "1100125", "to" : "1121130", "distance" : 676 }
{ "_id" : { "$oid" : "54bbe9fe44ae6757913a2946" }, "from" : "1121130", "to" : "1210101", "distance" : 500 }
{ "_id" : { "$oid" : "54bbe9fe44ae6757913a2947" }, "from" : "1210101", "to" : "1220205", "distance" : 759 }
{ "_id" : { "$oid" : "54bbe9ff44ae6757913a2948" }, "from" : "1220205", "to" : "1240103", "distance" : 548 }
{ "_id" : { "$oid" : "54bbe9ff44ae6757913a2949" }, "from" : "1240103", "to" : "1240121", "distance" : 512 }
{ "_id" : { "$oid" : "54bbe9ff44ae6757913a294a" }, "from" : "1240121", "to" : "1240122", "distance" : 471 }
{ "_id" : { "$oid" : "54bbea0044ae6757913a294b" }, "from" : "1240122", "to" : "1362141", "distance" : 3176 }
{ "_id" : { "$oid" : "54bbea0044ae6757913a294c" }, "from" : "1362141", "to" : "4850202", "distance" : 15208 }
{ "_id" : { "$oid" : "54bbea0144ae6757913a294d" }, "from" : "4850202", "to" : "4860242", "distance" : 593 }
{ "_id" : { "$oid" : "54bbea0144ae6757913a294e" }, "from" : "4860242", "to" : "9214213", "distance" : 674 }
{ "_id" : { "$oid" : "54bbea0144ae6757913a294f" }, "from" : "9214213", "to" : "9214219", "distance" : 1199 }
{ "_id" : { "$oid" : "54bbea0244ae6757913a2950" }, "from" : "9214219", "to" : "9214221", "distance" : 603 }
{ "_id" : { "$oid" : "54bbea0244ae6757913a2951" }, "from" : "9214221", "to" : "9214223", "distance" : 651 }
{ "_id" : { "$oid" : "54bbea0244ae6757913a2952" }, "from" : "9214223", "to" : "9216201", "distance" : 300 }
{ "_id" : { "$oid" : "54bbea0344ae6757913a2953" }, "from" : "9216201", "to" : "9216203", "distance" : 1328 }
{ "_id" : { "$oid" : "54bbea0344ae6757913a2954" }, "from" : "9216203", "to" : "9216206", "distance" : 641 }
{ "_id" : { "$oid" : "54bbea0444ae6757913a2955" }, "from" : "9216206", "to" : "9216208", "distance" : 447 }
{ "_id" : { "$oid" : "54bbea0444ae6757913a2956" }, "from" : "9216208", "to" : "9216210", "distance" : 715 }
{ "_id" : { "$oid" : "54bbea0444ae6757913a2957" }, "from" : "9216210", "to" : "9216212", "distance" : 476 }
{ "_id" : { "$oid" : "54bbea0544ae6757913a2958" }, "from" : "9216212", "to" : "9222206", "distance" : 606 }
{ "_id" : { "$oid" : "54bbea0544ae6757913a2959" }, "from" : "9222206", "to" : "9222213", "distance" : 658 }
{ "_id" : { "$oid" : "54bbea0644ae6757913a295a" }, "from" : "9222213", "to" : "9222223", "distance" : 508 }
{ "_id" : { "$oid" : "54bbea0644ae6757913a295b" }, "from" : "9222223", "to" : "9222228", "distance" : 339 }
{ "_id" : { "$oid" : "54bbea0644ae6757913a295c" }, "from" : "9222228", "to" : "9222229", "distance" : 351 }
{ "_id" : { "$oid" : "54bbea0744ae6757913a295d" }, "from" : "9222229", "to" : "9222239", "distance" : 371 }
{ "_id" : { "$oid" : "54bbea0744ae6757913a295e" }, "from" : "9222239", "to" : "9223203", "distance" : 515 }
{ "_id" : { "$oid" : "54bbea0844ae6757913a295f" }, "from" : "9223203", "to" : "9223205", "distance" : 251 }
{ "_id" : { "$oid" : "54bbea0844ae6757913a2960" }, "from" : "9223205", "to" : "9222238", "distance" : 1011 }
{ "_id" : { "$oid" : "54bbea0944ae6757913a2961" }, "from" : "5000246", "to" : "5000245", "distance" : 362 }
{ "_id" : { "$oid" : "54bbea0944ae6757913a2962" }, "from" : "5000245", "to" : "9010216", "distance" : 543 }
{ "_id" : { "$oid" : "54bbea0944ae6757913a2963" }, "from" : "9010216", "to" : "9010218", "distance" : 276 }
{ "_id" : { "$oid" : "54bbea0a44ae6757913a2964" }, "from" : "9010218", "to" : "9010220", "distance" : 269 }
{ "_id" : { "$oid" : "54bbea0a44ae6757913a2965" }, "from" : "9010220", "to" : "9010222", "distance" : 214 }
{ "_id" : { "$oid" : "54bbea0b44ae6757913a2966" }, "from" : "9010222", "to" : "9010224", "distance" : 420 }
{ "_id" : { "$oid" : "54bbea0b44ae6757913a2967" }, "from" : "9010224", "to" : "9010226", "distance" : 171 }
{ "_id" : { "$oid" : "54bbea0b44ae6757913a2968" }, "from" : "9010226", "to" : "9010208", "distance" : 421 }
{ "_id" : { "$oid" : "54bbea0c44ae6757913a2969" }, "from" : "9010208", "to" : "9010210", "distance" : 283 }
{ "_id" : { "$oid" : "54bbea0c44ae6757913a296a" }, "from" : "9010210", "to" : "9010212", "distance" : 421 }
{ "_id" : { "$oid" : "54bbea0c44ae6757913a296b" }, "from" : "9010212", "to" : "9010214", "distance" : 343 }
{ "_id" : { "$oid" : "54bbea0d44ae6757913a296c" }, "from" : "9010214", "to" : "9020207", "distance" : 504 }
{ "_id" : { "$oid" : "54bbea0d44ae6757913a296d" }, "from" : "9020207", "to" : "9040204", "distance" : 402 }
{ "_id" : { "$oid" : "54bbea0e44ae6757913a296e" }, "from" : "9040204", "to" : "9040206", "distance" : 210 }
{ "_id" : { "$oid" : "54bbea0e44ae6757913a296f" }, "from" : "9040206", "to" : "9040208", "distance" : 332 }
{ "_id" : { "$oid" : "54bbea0e44ae6757913a2970" }, "from" : "9040208", "to" : "9040210", "distance" : 419 }
{ "_id" : { "$oid" : "54bbea0f44ae6757913a2971" }, "from" : "9040210", "to" : "9040211", "distance" : 298 }
{ "_id" : { "$oid" : "54bbea0f44ae6757913a2972" }, "from" : "9040211", "to" : "9090228", "distance" : 213 }
{ "_id" : { "$oid" : "54bbea1044ae6757913a2973" }, "from" : "9090228", "to" : "9090233", "distance" : 554 }
{ "_id" : { "$oid" : "54bbea1044ae6757913a2974" }, "from" : "9090233", "to" : "9050231", "distance" : 945 }
{ "_id" : { "$oid" : "54bbea1044ae6757913a2975" }, "from" : "9050231", "to" : "9050233", "distance" : 311 }
{ "_id" : { "$oid" : "54bbea1144ae6757913a2976" }, "from" : "9050233", "to" : "9050216", "distance" : 276 }
{ "_id" : { "$oid" : "54bbea1144ae6757913a2977" }, "from" : "9050216", "to" : "9050214", "distance" : 495 }
{ "_id" : { "$oid" : "54bbea1244ae6757913a2978" }, "from" : "9050214", "to" : "9050212", "distance" : 218 }
{ "_id" : { "$oid" : "54bbea1244ae6757913a2979" }, "from" : "9050212", "to" : "9050210", "distance" : 298 }
{ "_id" : { "$oid" : "54bbea1244ae6757913a297a" }, "from" : "9050210", "to" : "9050208", "distance" : 318 }
{ "_id" : { "$oid" : "54bbea1344ae6757913a297b" }, "from" : "9050208", "to" : "9218212", "distance" : 1642 }
{ "_id" : { "$oid" : "54bbea1344ae6757913a297c" }, "from" : "9218212", "to" : "9218203", "distance" : 137 }
{ "_id" : { "$oid" : "54bbea1344ae6757913a297d" }, "from" : "9218203", "to" : "9050205", "distance" : 1215 }
{ "_id" : { "$oid" : "54bbea1444ae6757913a297e" }, "from" : "9050205", "to" : "9100211", "distance" : 401 }
{ "_id" : { "$oid" : "54bbea1444ae6757913a297f" }, "from" : "9100211", "to" : "9100205", "distance" : 674 }
{ "_id" : { "$oid" : "54bbea1544ae6757913a2980" }, "from" : "9100205", "to" : "9100203", "distance" : 733 }
{ "_id" : { "$oid" : "54bbea1544ae6757913a2981" }, "from" : "9100203", "to" : "9100210", "distance" : 951 }
{ "_id" : { "$oid" : "54bbea1544ae6757913a2982" }, "from" : "9100210", "to" : "4860211", "distance" : 1260 }
{ "_id" : { "$oid" : "54bbea1644ae6757913a2983" }, "from" : "4860211", "to" : "4860236", "distance" : 383 }
{ "_id" : { "$oid" : "54bbea1644ae6757913a2984" }, "from" : "4860236", "to" : "4860213", "distance" : 239 }
{ "_id" : { "$oid" : "54bbea1744ae6757913a2985" }, "from" : "4860213", "to" : "4860215", "distance" : 853 }
{ "_id" : { "$oid" : "54bbea1744ae6757913a2986" }, "from" : "4860215", "to" : "9214204", "distance" : 721 }
{ "_id" : { "$oid" : "54bbea1744ae6757913a2987" }, "from" : "9214204", "to" : "4860240", "distance" : 429 }
{ "_id" : { "$oid" : "54bbea1844ae6757913a2988" }, "from" : "4860240", "to" : "9214202", "distance" : 918 }
{ "_id" : { "$oid" : "54bbea1844ae6757913a2989" }, "from" : "9214202", "to" : "4970222", "distance" : 1035 }
{ "_id" : { "$oid" : "54bbea1944ae6757913a298a" }, "from" : "4970222", "to" : "4970220", "distance" : 761 }
{ "_id" : { "$oid" : "54bbea1944ae6757913a298b" }, "from" : "4970220", "to" : "4970231", "distance" : 1013 }
{ "_id" : { "$oid" : "54bbea1944ae6757913a298c" }, "from" : "4970231", "to" : "4660218", "distance" : 669 }
{ "_id" : { "$oid" : "54bbea1a44ae6757913a298d" }, "from" : "4660218", "to" : "4660216", "distance" : 602 }
{ "_id" : { "$oid" : "54bbea1a44ae6757913a298e" }, "from" : "4660216", "to" : "4660214", "distance" : 590 }
{ "_id" : { "$oid" : "54bbea1b44ae6757913a298f" }, "from" : "4660214", "to" : "4660222", "distance" : 331 }
{ "_id" : { "$oid" : "54bbea1b44ae6757913a2990" }, "from" : "4660222", "to" : "4660212", "distance" : 249 }
{ "_id" : { "$oid" : "54bbea1b44ae6757913a2991" }, "from" : "4660212", "to" : "4660210", "distance" : 471 }
{ "_id" : { "$oid" : "54bbea1c44ae6757913a2992" }, "from" : "4660210", "to" : "4660208", "distance" : 378 }
{ "_id" : { "$oid" : "54bbea1c44ae6757913a2993" }, "from" : "4660208", "to" : "4640211", "distance" : 560 }
{ "_id" : { "$oid" : "54bbea1c44ae6757913a2994" }, "from" : "4640211", "to" : "4640213", "distance" : 377 }
{ "_id" : { "$oid" : "54bbea1d44ae6757913a2995" }, "from" : "4640213", "to" : "1362142", "distance" : 7483 }
{ "_id" : { "$oid" : "54bbea1d44ae6757913a2996" }, "from" : "1020121", "to" : "1111112", "distance" : 1375 }
{ "_id" : { "$oid" : "54bbea1e44ae6757913a2997" }, "from" : "1362141", "to" : "4640212", "distance" : 7949 }
{ "_id" : { "$oid" : "54bbea1e44ae6757913a2998" }, "from" : "4640212", "to" : "4640208", "distance" : 308 }
{ "_id" : { "$oid" : "54bbea1f44ae6757913a2999" }, "from" : "4640208", "to" : "4640206", "distance" : 391 }
{ "_id" : { "$oid" : "54bbea1f44ae6757913a299a" }, "from" : "4640206", "to" : "4660207", "distance" : 207 }
{ "_id" : { "$oid" : "54bbea1f44ae6757913a299b" }, "from" : "4660207", "to" : "4660209", "distance" : 288 }
{ "_id" : { "$oid" : "54bbea2044ae6757913a299c" }, "from" : "4660209", "to" : "4660211", "distance" : 507 }
{ "_id" : { "$oid" : "54bbea2044ae6757913a299d" }, "from" : "4660211", "to" : "4660223", "distance" : 248 }
{ "_id" : { "$oid" : "54bbea2144ae6757913a299e" }, "from" : "4660223", "to" : "4660213", "distance" : 321 }
{ "_id" : { "$oid" : "54bbea2144ae6757913a299f" }, "from" : "4660213", "to" : "4660215", "distance" : 646 }
{ "_id" : { "$oid" : "54bbea2144ae6757913a29a0" }, "from" : "4660215", "to" : "4660220", "distance" : 360 }
{ "_id" : { "$oid" : "54bbea2244ae6757913a29a1" }, "from" : "4660220", "to" : "4660219", "distance" : 265 }
{ "_id" : { "$oid" : "54bbea2244ae6757913a29a2" }, "from" : "4660219", "to" : "4970217", "distance" : 716 }
{ "_id" : { "$oid" : "54bbea2344ae6757913a29a3" }, "from" : "4970217", "to" : "4970219", "distance" : 977 }
{ "_id" : { "$oid" : "54bbea2344ae6757913a29a4" }, "from" : "4970219", "to" : "4970221", "distance" : 663 }
{ "_id" : { "$oid" : "54bbea2344ae6757913a29a5" }, "from" : "4970221", "to" : "9214201", "distance" : 959 }
{ "_id" : { "$oid" : "54bbea2444ae6757913a29a6" }, "from" : "9214201", "to" : "9214203", "distance" : 1101 }
{ "_id" : { "$oid" : "54bbea2444ae6757913a29a7" }, "from" : "9214203", "to" : "4860249", "distance" : 364 }
{ "_id" : { "$oid" : "54bbea2444ae6757913a29a8" }, "from" : "4860249", "to" : "4860212", "distance" : 785 }
{ "_id" : { "$oid" : "54bbea2544ae6757913a29a9" }, "from" : "4860212", "to" : "4860214", "distance" : 816 }
{ "_id" : { "$oid" : "54bbea2544ae6757913a29aa" }, "from" : "4860214", "to" : "4860235", "distance" : 237 }
{ "_id" : { "$oid" : "54bbea2644ae6757913a29ab" }, "from" : "4860235", "to" : "9100201", "distance" : 497 }
{ "_id" : { "$oid" : "54bbea2644ae6757913a29ac" }, "from" : "9100201", "to" : "9100202", "distance" : 1248 }
{ "_id" : { "$oid" : "54bbea2644ae6757913a29ad" }, "from" : "9100202", "to" : "9100204", "distance" : 1001 }
{ "_id" : { "$oid" : "54bbea2744ae6757913a29ae" }, "from" : "9100204", "to" : "9100208", "distance" : 710 }
{ "_id" : { "$oid" : "54bbea2744ae6757913a29af" }, "from" : "9100208", "to" : "9100209", "distance" : 394 }
{ "_id" : { "$oid" : "54bbea2844ae6757913a29b0" }, "from" : "9100209", "to" : "9218212", "distance" : 1858 }
{ "_id" : { "$oid" : "54bbea2844ae6757913a29b1" }, "from" : "9218203", "to" : "9050206", "distance" : 1223 }
{ "_id" : { "$oid" : "54bbea2844ae6757913a29b2" }, "from" : "9050206", "to" : "9050209", "distance" : 367 }
{ "_id" : { "$oid" : "54bbea2944ae6757913a29b3" }, "from" : "9050209", "to" : "9050211", "distance" : 281 }
{ "_id" : { "$oid" : "54bbea2944ae6757913a29b4" }, "from" : "9050211", "to" : "9050213", "distance" : 256 }
{ "_id" : { "$oid" : "54bbea2a44ae6757913a29b5" }, "from" : "9050213", "to" : "9050215", "distance" : 322 }
{ "_id" : { "$oid" : "54bbea2a44ae6757913a29b6" }, "from" : "9050215", "to" : "9050217", "distance" : 371 }
{ "_id" : { "$oid" : "54bbea2a44ae6757913a29b7" }, "from" : "9050217", "to" : "9050232", "distance" : 335 }
{ "_id" : { "$oid" : "54bbea2b44ae6757913a29b8" }, "from" : "9050232", "to" : "9050230", "distance" : 263 }
{ "_id" : { "$oid" : "54bbea2b44ae6757913a29b9" }, "from" : "9050230", "to" : "9040223", "distance" : 1013 }
{ "_id" : { "$oid" : "54bbea2b44ae6757913a29ba" }, "from" : "9040223", "to" : "9040214", "distance" : 393 }
{ "_id" : { "$oid" : "54bbea2c44ae6757913a29bb" }, "from" : "9040214", "to" : "9040212", "distance" : 295 }
{ "_id" : { "$oid" : "54bbea2c44ae6757913a29bc" }, "from" : "9040212", "to" : "9040209", "distance" : 367 }
{ "_id" : { "$oid" : "54bbea2d44ae6757913a29bd" }, "from" : "9040209", "to" : "9040202", "distance" : 262 }
{ "_id" : { "$oid" : "54bbea2d44ae6757913a29be" }, "from" : "9040202", "to" : "9040205", "distance" : 422 }
{ "_id" : { "$oid" : "54bbea2d44ae6757913a29bf" }, "from" : "9040205", "to" : "9040203", "distance" : 206 }
{ "_id" : { "$oid" : "54bbea2e44ae6757913a29c0" }, "from" : "9040203", "to" : "9040201", "distance" : 321 }
{ "_id" : { "$oid" : "54bbea2e44ae6757913a29c1" }, "from" : "9040201", "to" : "9010213", "distance" : 615 }
{ "_id" : { "$oid" : "54bbea2f44ae6757913a29c2" }, "from" : "9010213", "to" : "9010211", "distance" : 333 }
{ "_id" : { "$oid" : "54bbea2f44ae6757913a29c3" }, "from" : "9010211", "to" : "9010209", "distance" : 337 }
{ "_id" : { "$oid" : "54bbea2f44ae6757913a29c4" }, "from" : "9010209", "to" : "9010207", "distance" : 276 }
{ "_id" : { "$oid" : "54bbea3044ae6757913a29c5" }, "from" : "9010207", "to" : "9010225", "distance" : 465 }
{ "_id" : { "$oid" : "54bbea3044ae6757913a29c6" }, "from" : "9010225", "to" : "9010223", "distance" : 183 }
{ "_id" : { "$oid" : "54bbea3044ae6757913a29c7" }, "from" : "9010223", "to" : "9010221", "distance" : 410 }
{ "_id" : { "$oid" : "54bbea3144ae6757913a29c8" }, "from" : "9010221", "to" : "9010219", "distance" : 213 }
{ "_id" : { "$oid" : "54bbea3144ae6757913a29c9" }, "from" : "9010219", "to" : "9010217", "distance" : 224 }
{ "_id" : { "$oid" : "54bbea3244ae6757913a29ca" }, "from" : "9010217", "to" : "9010215", "distance" : 398 }
{ "_id" : { "$oid" : "54bbea3244ae6757913a29cb" }, "from" : "9010215", "to" : "5000244", "distance" : 532 }
{ "_id" : { "$oid" : "54bbea3244ae6757913a29cc" }, "from" : "5000244", "to" : "5000246", "distance" : 284 }
{ "_id" : { "$oid" : "54bbea3344ae6757913a29cd" }, "from" : "9050208", "to" : "9050205", "distance" : 375 }
{ "_id" : { "$oid" : "54bbea3344ae6757913a29ce" }, "from" : "4860213", "to" : "4860209", "distance" : 1062 }
{ "_id" : { "$oid" : "54bbea3444ae6757913a29cf" }, "from" : "4850202", "to" : "4860208", "distance" : 602 }
{ "_id" : { "$oid" : "54bbea3444ae6757913a29d0" }, "from" : "4860208", "to" : "4860212", "distance" : 234 }
{ "_id" : { "$oid" : "54bbea3544ae6757913a29d1" }, "from" : "9100209", "to" : "9050206", "distance" : 618 }
{ "_id" : { "$oid" : "54bbea3644ae6757913a29d2" }, "from" : "9222238", "to" : "9222201", "distance" : 245 }
{ "_id" : { "$oid" : "54bbea3644ae6757913a29d3" }, "from" : "9222201", "to" : "9224205", "distance" : 829 }
{ "_id" : { "$oid" : "54bbea3644ae6757913a29d4" }, "from" : "9224205", "to" : "9224208", "distance" : 314 }
{ "_id" : { "$oid" : "54bbea3744ae6757913a29d5" }, "from" : "9224208", "to" : "9229203", "distance" : 691 }
{ "_id" : { "$oid" : "54bbea3744ae6757913a29d6" }, "from" : "9229203", "to" : "9229206", "distance" : 435 }
{ "_id" : { "$oid" : "54bbea3744ae6757913a29d7" }, "from" : "9229206", "to" : "9229208", "distance" : 327 }
{ "_id" : { "$oid" : "54bbea3844ae6757913a29d8" }, "from" : "9229208", "to" : "9225203", "distance" : 759 }
{ "_id" : { "$oid" : "54bbea3844ae6757913a29d9" }, "from" : "9225203", "to" : "9225205", "distance" : 570 }
{ "_id" : { "$oid" : "54bbea3944ae6757913a29da" }, "from" : "9225205", "to" : "9225206", "distance" : 590 }
{ "_id" : { "$oid" : "54bbea3944ae6757913a29db" }, "from" : "9225206", "to" : "9225208", "distance" : 329 }
{ "_id" : { "$oid" : "54bbea3944ae6757913a29dc" }, "from" : "9225208", "to" : "9225209", "distance" : 256 }
{ "_id" : { "$oid" : "54bbea3a44ae6757913a29dd" }, "from" : "9225209", "to" : "9225212", "distance" : 529 }
{ "_id" : { "$oid" : "54bbea3a44ae6757913a29de" }, "from" : "9225212", "to" : "9225214", "distance" : 351 }
{ "_id" : { "$oid" : "54bbea3b44ae6757913a29df" }, "from" : "9225214", "to" : "9225215", "distance" : 354 }
{ "_id" : { "$oid" : "54bbea3b44ae6757913a29e0" }, "from" : "9225215", "to" : "9225218", "distance" : 799 }
{ "_id" : { "$oid" : "54bbea3b44ae6757913a29e1" }, "from" : "9225218", "to" : "9400211", "distance" : 2196 }
{ "_id" : { "$oid" : "54bbea3c44ae6757913a29e2" }, "from" : "9400211", "to" : "9400208", "distance" : 5362 }
{ "_id" : { "$oid" : "54bbea3c44ae6757913a29e3" }, "from" : "9400208", "to" : "9400203", "distance" : 1049 }
{ "_id" : { "$oid" : "54bbea3d44ae6757913a29e4" }, "from" : "9400203", "to" : "9400204", "distance" : 6283 }
{ "_id" : { "$oid" : "54bbea3d44ae6757913a29e5" }, "from" : "9400208", "to" : "9400201", "distance" : 1085 }
{ "_id" : { "$oid" : "54bbea3e44ae6757913a29e6" }, "from" : "9400202", "to" : "9400209", "distance" : 765 }
{ "_id" : { "$oid" : "54bbea3e44ae6757913a29e7" }, "from" : "9400209", "to" : "9400210", "distance" : 5492 }
{ "_id" : { "$oid" : "54bbea3f44ae6757913a29e8" }, "from" : "9400210", "to" : "9225217", "distance" : 2162 }
{ "_id" : { "$oid" : "54bbea3f44ae6757913a29e9" }, "from" : "9225217", "to" : "9225216", "distance" : 686 }
{ "_id" : { "$oid" : "54bbea3f44ae6757913a29ea" }, "from" : "9225216", "to" : "9225213", "distance" : 480 }
{ "_id" : { "$oid" : "54bbea4044ae6757913a29eb" }, "from" : "9225213", "to" : "9225211", "distance" : 354 }
{ "_id" : { "$oid" : "54bbea4044ae6757913a29ec" }, "from" : "9225211", "to" : "9225210", "distance" : 496 }
{ "_id" : { "$oid" : "54bbea4044ae6757913a29ed" }, "from" : "9225210", "to" : "9225201", "distance" : 310 }
{ "_id" : { "$oid" : "54bbea4144ae6757913a29ee" }, "from" : "9225201", "to" : "9225207", "distance" : 322 }
{ "_id" : { "$oid" : "54bbea4144ae6757913a29ef" }, "from" : "9225207", "to" : "9225204", "distance" : 673 }
{ "_id" : { "$oid" : "54bbea4244ae6757913a29f0" }, "from" : "9225204", "to" : "9225202", "distance" : 595 }
{ "_id" : { "$oid" : "54bbea4244ae6757913a29f1" }, "from" : "9225202", "to" : "9229207", "distance" : 733 }
{ "_id" : { "$oid" : "54bbea4244ae6757913a29f2" }, "from" : "9229207", "to" : "9229205", "distance" : 349 }
{ "_id" : { "$oid" : "54bbea4344ae6757913a29f3" }, "from" : "9229205", "to" : "9229204", "distance" : 307 }
{ "_id" : { "$oid" : "54bbea4344ae6757913a29f4" }, "from" : "9229204", "to" : "9224207", "distance" : 810 }
{ "_id" : { "$oid" : "54bbea4444ae6757913a29f5" }, "from" : "9224207", "to" : "9224209", "distance" : 303 }
{ "_id" : { "$oid" : "54bbea4444ae6757913a29f6" }, "from" : "9224209", "to" : "9222202", "distance" : 734 }
{ "_id" : { "$oid" : "54bbea4544ae6757913a29f7" }, "from" : "9500200", "to" : "9227203", "distance" : 4401 }
{ "_id" : { "$oid" : "54bbea4544ae6757913a29f8" }, "from" : "9227203", "to" : "9227202", "distance" : 1033 }
{ "_id" : { "$oid" : "54bbea4644ae6757913a29f9" }, "from" : "9227202", "to" : "9227207", "distance" : 1114 }
{ "_id" : { "$oid" : "54bbea4644ae6757913a29fa" }, "from" : "9227207", "to" : "9227209", "distance" : 323 }
{ "_id" : { "$oid" : "54bbea4644ae6757913a29fb" }, "from" : "9227209", "to" : "9227210", "distance" : 274 }
{ "_id" : { "$oid" : "54bbea4744ae6757913a29fc" }, "from" : "9227210", "to" : "9227214", "distance" : 829 }
{ "_id" : { "$oid" : "54bbea4744ae6757913a29fd" }, "from" : "9227214", "to" : "9227217", "distance" : 516 }
{ "_id" : { "$oid" : "54bbea4744ae6757913a29fe" }, "from" : "9227217", "to" : "9227220", "distance" : 700 }
{ "_id" : { "$oid" : "54bbea4844ae6757913a29ff" }, "from" : "9227220", "to" : "9226202", "distance" : 929 }
{ "_id" : { "$oid" : "54bbea4844ae6757913a2a00" }, "from" : "9226202", "to" : "9226203", "distance" : 514 }
{ "_id" : { "$oid" : "54bbea4944ae6757913a2a01" }, "from" : "9226203", "to" : "9226205", "distance" : 734 }
{ "_id" : { "$oid" : "54bbea4944ae6757913a2a02" }, "from" : "9226205", "to" : "9226209", "distance" : 454 }
{ "_id" : { "$oid" : "54bbea4944ae6757913a2a03" }, "from" : "9226209", "to" : "9226208", "distance" : 326 }
{ "_id" : { "$oid" : "54bbea4a44ae6757913a2a04" }, "from" : "9226208", "to" : "9226211", "distance" : 517 }
{ "_id" : { "$oid" : "54bbea4a44ae6757913a2a05" }, "from" : "9226211", "to" : "9226215", "distance" : 754 }
{ "_id" : { "$oid" : "54bbea4b44ae6757913a2a06" }, "from" : "9226215", "to" : "9226216", "distance" : 525 }
{ "_id" : { "$oid" : "54bbea4b44ae6757913a2a07" }, "from" : "9226216", "to" : "9226218", "distance" : 433 }
{ "_id" : { "$oid" : "54bbea4b44ae6757913a2a08" }, "from" : "9226218", "to" : "9226221", "distance" : 422 }
{ "_id" : { "$oid" : "54bbea4c44ae6757913a2a09" }, "from" : "9226221", "to" : "9226222", "distance" : 434 }
{ "_id" : { "$oid" : "54bbea4c44ae6757913a2a0a" }, "from" : "9226222", "to" : "9226227", "distance" : 581 }
{ "_id" : { "$oid" : "54bbea4d44ae6757913a2a0b" }, "from" : "9226227", "to" : "9226229", "distance" : 570 }
{ "_id" : { "$oid" : "54bbea4d44ae6757913a2a0c" }, "from" : "9226229", "to" : "9229201", "distance" : 1032 }
{ "_id" : { "$oid" : "54bbea4d44ae6757913a2a0d" }, "from" : "9229201", "to" : "9224201", "distance" : 619 }
{ "_id" : { "$oid" : "54bbea4e44ae6757913a2a0e" }, "from" : "9224201", "to" : "9224204", "distance" : 459 }
{ "_id" : { "$oid" : "54bbea4e44ae6757913a2a0f" }, "from" : "9224204", "to" : "9224207", "distance" : 609 }
{ "_id" : { "$oid" : "54bbea4e44ae6757913a2a10" }, "from" : "9214220", "to" : "9214227", "distance" : 641 }
{ "_id" : { "$oid" : "54bbea4f44ae6757913a2a11" }, "from" : "9214227", "to" : "9214216", "distance" : 914 }
{ "_id" : { "$oid" : "54bbea4f44ae6757913a2a12" }, "from" : "9214216", "to" : "9214225", "distance" : 415 }
{ "_id" : { "$oid" : "54bbea5044ae6757913a2a13" }, "from" : "9214225", "to" : "4860229", "distance" : 346 }
{ "_id" : { "$oid" : "54bbea5044ae6757913a2a14" }, "from" : "4860229", "to" : "4860231", "distance" : 347 }
{ "_id" : { "$oid" : "54bbea5044ae6757913a2a15" }, "from" : "4860231", "to" : "4860207", "distance" : 166 }
{ "_id" : { "$oid" : "54bbea5144ae6757913a2a16" }, "from" : "4860207", "to" : "4860233", "distance" : 311 }
{ "_id" : { "$oid" : "54bbea5144ae6757913a2a17" }, "from" : "4860233", "to" : "4860202", "distance" : 309 }
{ "_id" : { "$oid" : "54bbea5244ae6757913a2a18" }, "from" : "4860202", "to" : "9214206", "distance" : 959 }
{ "_id" : { "$oid" : "54bbea5244ae6757913a2a19" }, "from" : "9214206", "to" : "9214208", "distance" : 687 }
{ "_id" : { "$oid" : "54bbea5244ae6757913a2a1a" }, "from" : "9214208", "to" : "4970214", "distance" : 801 }
{ "_id" : { "$oid" : "54bbea5344ae6757913a2a1b" }, "from" : "4970214", "to" : "4970212", "distance" : 1105 }
{ "_id" : { "$oid" : "54bbea5344ae6757913a2a1c" }, "from" : "4970212", "to" : "4970210", "distance" : 532 }
{ "_id" : { "$oid" : "54bbea5444ae6757913a2a1d" }, "from" : "4970210", "to" : "4970298", "distance" : 278 }
{ "_id" : { "$oid" : "54bbea5444ae6757913a2a1e" }, "from" : "4970298", "to" : "4970218", "distance" : 556 }
{ "_id" : { "$oid" : "54bbea5444ae6757913a2a1f" }, "from" : "4970218", "to" : "4970296", "distance" : 248 }
{ "_id" : { "$oid" : "54bbea5544ae6757913a2a20" }, "from" : "4970296", "to" : "4960217", "distance" : 461 }
{ "_id" : { "$oid" : "54bbea5544ae6757913a2a21" }, "from" : "4960217", "to" : "4960299", "distance" : 531 }
{ "_id" : { "$oid" : "54bbea5544ae6757913a2a22" }, "from" : "4960299", "to" : "4960215", "distance" : 661 }
{ "_id" : { "$oid" : "54bbea5644ae6757913a2a23" }, "from" : "4960215", "to" : "4940223", "distance" : 806 }
{ "_id" : { "$oid" : "54bbea5644ae6757913a2a24" }, "from" : "4940223", "to" : "4930226", "distance" : 669 }
{ "_id" : { "$oid" : "54bbea5744ae6757913a2a25" }, "from" : "4930226", "to" : "1362142", "distance" : 7922 }
{ "_id" : { "$oid" : "54bbea5844ae6757913a2a26" }, "from" : "1362141", "to" : "4930225", "distance" : 7169 }
{ "_id" : { "$oid" : "54bbea5844ae6757913a2a27" }, "from" : "4930225", "to" : "4930230", "distance" : 312 }
{ "_id" : { "$oid" : "54bbea5844ae6757913a2a28" }, "from" : "4930230", "to" : "4940222", "distance" : 792 }
{ "_id" : { "$oid" : "54bbea5944ae6757913a2a29" }, "from" : "4940222", "to" : "4960214", "distance" : 823 }
{ "_id" : { "$oid" : "54bbea5944ae6757913a2a2a" }, "from" : "4960214", "to" : "4960298", "distance" : 669 }
{ "_id" : { "$oid" : "54bbea5944ae6757913a2a2b" }, "from" : "4960298", "to" : "4960216", "distance" : 439 }
{ "_id" : { "$oid" : "54bbea5a44ae6757913a2a2c" }, "from" : "4960216", "to" : "4970297", "distance" : 569 }
{ "_id" : { "$oid" : "54bbea5a44ae6757913a2a2d" }, "from" : "4970297", "to" : "4970299", "distance" : 594 }
{ "_id" : { "$oid" : "54bbea5b44ae6757913a2a2e" }, "from" : "4970299", "to" : "4970237", "distance" : 427 }
{ "_id" : { "$oid" : "54bbea5b44ae6757913a2a2f" }, "from" : "4970237", "to" : "4970211", "distance" : 498 }
{ "_id" : { "$oid" : "54bbea5b44ae6757913a2a30" }, "from" : "4970211", "to" : "4970213", "distance" : 1089 }
{ "_id" : { "$oid" : "54bbea5c44ae6757913a2a31" }, "from" : "4970213", "to" : "9214209", "distance" : 836 }
{ "_id" : { "$oid" : "54bbea5c44ae6757913a2a32" }, "from" : "9214209", "to" : "9214205", "distance" : 642 }
{ "_id" : { "$oid" : "54bbea5c44ae6757913a2a33" }, "from" : "9214205", "to" : "4860201", "distance" : 876 }
{ "_id" : { "$oid" : "54bbea5d44ae6757913a2a34" }, "from" : "4860201", "to" : "4860234", "distance" : 381 }
{ "_id" : { "$oid" : "54bbea5d44ae6757913a2a35" }, "from" : "4860234", "to" : "4860232", "distance" : 418 }
{ "_id" : { "$oid" : "54bbea5e44ae6757913a2a36" }, "from" : "4860232", "to" : "4860230", "distance" : 364 }
{ "_id" : { "$oid" : "54bbea5e44ae6757913a2a37" }, "from" : "4860230", "to" : "9214226", "distance" : 312 }
{ "_id" : { "$oid" : "54bbea5e44ae6757913a2a38" }, "from" : "9214226", "to" : "9214217", "distance" : 508 }
{ "_id" : { "$oid" : "54bbea5f44ae6757913a2a39" }, "from" : "9214217", "to" : "9214219", "distance" : 979 }
{ "_id" : { "$oid" : "54bbea5f44ae6757913a2a3a" }, "from" : "9224205", "to" : "9224206", "distance" : 464 }
{ "_id" : { "$oid" : "54bbea6044ae6757913a2a3b" }, "from" : "9224206", "to" : "9224203", "distance" : 490 }
{ "_id" : { "$oid" : "54bbea6044ae6757913a2a3c" }, "from" : "9224203", "to" : "9224202", "distance" : 293 }
{ "_id" : { "$oid" : "54bbea6144ae6757913a2a3d" }, "from" : "9224202", "to" : "9229202", "distance" : 640 }
{ "_id" : { "$oid" : "54bbea6144ae6757913a2a3e" }, "from" : "9229202", "to" : "9226228", "distance" : 1133 }
{ "_id" : { "$oid" : "54bbea6144ae6757913a2a3f" }, "from" : "9226228", "to" : "9226226", "distance" : 627 }
{ "_id" : { "$oid" : "54bbea6244ae6757913a2a40" }, "from" : "9226226", "to" : "9226223", "distance" : 387 }
{ "_id" : { "$oid" : "54bbea6244ae6757913a2a41" }, "from" : "9226223", "to" : "9226217", "distance" : 600 }
{ "_id" : { "$oid" : "54bbea6344ae6757913a2a42" }, "from" : "9226217", "to" : "9226230", "distance" : 242 }
{ "_id" : { "$oid" : "54bbea6344ae6757913a2a43" }, "from" : "9226230", "to" : "9226219", "distance" : 508 }
{ "_id" : { "$oid" : "54bbea6344ae6757913a2a44" }, "from" : "9226219", "to" : "9226220", "distance" : 509 }
{ "_id" : { "$oid" : "54bbea6444ae6757913a2a45" }, "from" : "9226220", "to" : "9226212", "distance" : 848 }
{ "_id" : { "$oid" : "54bbea6444ae6757913a2a46" }, "from" : "9226212", "to" : "9226207", "distance" : 547 }
{ "_id" : { "$oid" : "54bbea6444ae6757913a2a47" }, "from" : "9226207", "to" : "9226210", "distance" : 321 }
{ "_id" : { "$oid" : "54bbea6544ae6757913a2a48" }, "from" : "9226210", "to" : "9226206", "distance" : 354 }
{ "_id" : { "$oid" : "54bbea6544ae6757913a2a49" }, "from" : "9226206", "to" : "9226204", "distance" : 749 }
{ "_id" : { "$oid" : "54bbea6644ae6757913a2a4a" }, "from" : "9226204", "to" : "9226201", "distance" : 531 }
{ "_id" : { "$oid" : "54bbea6644ae6757913a2a4b" }, "from" : "9226201", "to" : "9227221", "distance" : 938 }
{ "_id" : { "$oid" : "54bbea6644ae6757913a2a4c" }, "from" : "9227221", "to" : "9227216", "distance" : 765 }
{ "_id" : { "$oid" : "54bbea6744ae6757913a2a4d" }, "from" : "9227216", "to" : "9227215", "distance" : 470 }
{ "_id" : { "$oid" : "54bbea6744ae6757913a2a4e" }, "from" : "9227215", "to" : "9227212", "distance" : 347 }
{ "_id" : { "$oid" : "54bbea6844ae6757913a2a4f" }, "from" : "9227212", "to" : "9227211", "distance" : 332 }
{ "_id" : { "$oid" : "54bbea6844ae6757913a2a50" }, "from" : "9227211", "to" : "9227208", "distance" : 422 }
{ "_id" : { "$oid" : "54bbea6844ae6757913a2a51" }, "from" : "9227208", "to" : "9227206", "distance" : 393 }
{ "_id" : { "$oid" : "54bbea6944ae6757913a2a52" }, "from" : "9227206", "to" : "9227205", "distance" : 1097 }
{ "_id" : { "$oid" : "54bbea6944ae6757913a2a53" }, "from" : "9227205", "to" : "9227204", "distance" : 692 }
{ "_id" : { "$oid" : "54bbea6944ae6757913a2a54" }, "from" : "9227204", "to" : "9500200", "distance" : 4572 }
{ "_id" : { "$oid" : "54bbea6a44ae6757913a2a55" }, "from" : "1020121", "to" : "1111142", "distance" : 1324 }
{ "_id" : { "$oid" : "54bbea6a44ae6757913a2a56" }, "from" : "1111142", "to" : "1113140", "distance" : 585 }
{ "_id" : { "$oid" : "54bbea6b44ae6757913a2a57" }, "from" : "1113140", "to" : "1121124", "distance" : 719 }
{ "_id" : { "$oid" : "54bbea6b44ae6757913a2a58" }, "from" : "1121124", "to" : "1220184", "distance" : 492 }
{ "_id" : { "$oid" : "54bbea6c44ae6757913a2a59" }, "from" : "1220184", "to" : "1220282", "distance" : 594 }
{ "_id" : { "$oid" : "54bbea6c44ae6757913a2a5a" }, "from" : "1220282", "to" : "1220207", "distance" : 1332 }
{ "_id" : { "$oid" : "54bbea6c44ae6757913a2a5b" }, "from" : "1220207", "to" : "1240110", "distance" : 958 }
{ "_id" : { "$oid" : "54bbea6d44ae6757913a2a5c" }, "from" : "1240110", "to" : "1250101", "distance" : 904 }
{ "_id" : { "$oid" : "54bbea6d44ae6757913a2a5d" }, "from" : "1250101", "to" : "1250203", "distance" : 379 }
{ "_id" : { "$oid" : "54bbea6e44ae6757913a2a5e" }, "from" : "1250203", "to" : "1284115", "distance" : 947 }
{ "_id" : { "$oid" : "54bbea6e44ae6757913a2a5f" }, "from" : "1284115", "to" : "1284186", "distance" : 1444 }
{ "_id" : { "$oid" : "54bbea6e44ae6757913a2a60" }, "from" : "1284186", "to" : "1342198", "distance" : 5242 }
{ "_id" : { "$oid" : "54bbea6f44ae6757913a2a61" }, "from" : "1342198", "to" : "4500209", "distance" : 3219 }
{ "_id" : { "$oid" : "54bbea6f44ae6757913a2a62" }, "from" : "4500209", "to" : "4510248", "distance" : 1524 }
{ "_id" : { "$oid" : "54bbea7044ae6757913a2a63" }, "from" : "4510248", "to" : "4680251", "distance" : 475 }
{ "_id" : { "$oid" : "54bbea7044ae6757913a2a64" }, "from" : "4680251", "to" : "4680249", "distance" : 2475 }
{ "_id" : { "$oid" : "54bbea7044ae6757913a2a65" }, "from" : "4680249", "to" : "4680217", "distance" : 689 }
{ "_id" : { "$oid" : "54bbea7144ae6757913a2a66" }, "from" : "4680217", "to" : "4680202", "distance" : 1977 }
{ "_id" : { "$oid" : "54bbea7144ae6757913a2a67" }, "from" : "4680202", "to" : "4670216", "distance" : 593 }
{ "_id" : { "$oid" : "54bbea7244ae6757913a2a68" }, "from" : "4670216", "to" : "4670220", "distance" : 428 }
{ "_id" : { "$oid" : "54bbea7244ae6757913a2a69" }, "from" : "4670220", "to" : "4670202", "distance" : 307 }
{ "_id" : { "$oid" : "54bbea7244ae6757913a2a6a" }, "from" : "4670202", "to" : "4710205", "distance" : 496 }
{ "_id" : { "$oid" : "54bbea7344ae6757913a2a6b" }, "from" : "4710205", "to" : "4710203", "distance" : 948 }
{ "_id" : { "$oid" : "54bbea7344ae6757913a2a6c" }, "from" : "4710203", "to" : "5000201", "distance" : 526 }
{ "_id" : { "$oid" : "54bbea7444ae6757913a2a6d" }, "from" : "5000201", "to" : "5000227", "distance" : 355 }
{ "_id" : { "$oid" : "54bbea7444ae6757913a2a6e" }, "from" : "5000227", "to" : "5000223", "distance" : 321 }
{ "_id" : { "$oid" : "54bbea7444ae6757913a2a6f" }, "from" : "5000223", "to" : "5000225", "distance" : 1055 }
{ "_id" : { "$oid" : "54bbea7544ae6757913a2a70" }, "from" : "5000225", "to" : "4810244", "distance" : 1518 }
{ "_id" : { "$oid" : "54bbea7544ae6757913a2a71" }, "from" : "4810244", "to" : "4810241", "distance" : 634 }
{ "_id" : { "$oid" : "54bbea7544ae6757913a2a72" }, "from" : "4810241", "to" : "4810226", "distance" : 393 }
{ "_id" : { "$oid" : "54bbea7644ae6757913a2a73" }, "from" : "4810226", "to" : "4810238", "distance" : 660 }
{ "_id" : { "$oid" : "54bbea7644ae6757913a2a74" }, "from" : "4810238", "to" : "4810201", "distance" : 406 }
{ "_id" : { "$oid" : "54bbea7744ae6757913a2a75" }, "from" : "4810201", "to" : "4810228", "distance" : 170 }
{ "_id" : { "$oid" : "54bbea7744ae6757913a2a76" }, "from" : "4810228", "to" : "4810204", "distance" : 710 }
{ "_id" : { "$oid" : "54bbea7744ae6757913a2a77" }, "from" : "4810204", "to" : "4810206", "distance" : 265 }
{ "_id" : { "$oid" : "54bbea7844ae6757913a2a78" }, "from" : "4810206", "to" : "4810208", "distance" : 267 }
{ "_id" : { "$oid" : "54bbea7844ae6757913a2a79" }, "from" : "4810208", "to" : "4810247", "distance" : 285 }
{ "_id" : { "$oid" : "54bbea7944ae6757913a2a7a" }, "from" : "4810247", "to" : "4810219", "distance" : 332 }
{ "_id" : { "$oid" : "54bbea7944ae6757913a2a7b" }, "from" : "4810219", "to" : "4810221", "distance" : 558 }
{ "_id" : { "$oid" : "54bbea7944ae6757913a2a7c" }, "from" : "4810221", "to" : "4810245", "distance" : 223 }
{ "_id" : { "$oid" : "54bbea7a44ae6757913a2a7d" }, "from" : "4810245", "to" : "4880205", "distance" : 424 }
{ "_id" : { "$oid" : "54bbea7a44ae6757913a2a7e" }, "from" : "4880205", "to" : "4880201", "distance" : 537 }
{ "_id" : { "$oid" : "54bbea7a44ae6757913a2a7f" }, "from" : "4880201", "to" : "4880207", "distance" : 427 }
{ "_id" : { "$oid" : "54bbea7b44ae6757913a2a80" }, "from" : "4880207", "to" : "9060209", "distance" : 434 }
{ "_id" : { "$oid" : "54bbea7b44ae6757913a2a81" }, "from" : "9060209", "to" : "9060211", "distance" : 150 }
{ "_id" : { "$oid" : "54bbea7c44ae6757913a2a82" }, "from" : "9060211", "to" : "9060213", "distance" : 355 }
{ "_id" : { "$oid" : "54bbea7c44ae6757913a2a83" }, "from" : "9060213", "to" : "9060219", "distance" : 410 }
{ "_id" : { "$oid" : "54bbea7c44ae6757913a2a84" }, "from" : "9060219", "to" : "9060222", "distance" : 268 }
{ "_id" : { "$oid" : "54bbea7d44ae6757913a2a85" }, "from" : "9060222", "to" : "9060224", "distance" : 192 }
{ "_id" : { "$oid" : "54bbea7d44ae6757913a2a86" }, "from" : "9060224", "to" : "9060226", "distance" : 458 }
{ "_id" : { "$oid" : "54bbea7e44ae6757913a2a87" }, "from" : "9060226", "to" : "9060230", "distance" : 354 }
{ "_id" : { "$oid" : "54bbea7e44ae6757913a2a88" }, "from" : "9060230", "to" : "9060232", "distance" : 214 }
{ "_id" : { "$oid" : "54bbea7f44ae6757913a2a89" }, "from" : "9060232", "to" : "9090207", "distance" : 301 }
{ "_id" : { "$oid" : "54bbea7f44ae6757913a2a8a" }, "from" : "9090207", "to" : "9040226", "distance" : 997 }
{ "_id" : { "$oid" : "54bbea7f44ae6757913a2a8b" }, "from" : "9040226", "to" : "9040204", "distance" : 257 }
{ "_id" : { "$oid" : "54bbea8044ae6757913a2a8c" }, "from" : "9040206", "to" : "9040230", "distance" : 329 }
{ "_id" : { "$oid" : "54bbea8144ae6757913a2a8d" }, "from" : "9040220", "to" : "9040205", "distance" : 384 }
{ "_id" : { "$oid" : "54bbea8144ae6757913a2a8e" }, "from" : "9040203", "to" : "9030213", "distance" : 538 }
{ "_id" : { "$oid" : "54bbea8144ae6757913a2a8f" }, "from" : "9030213", "to" : "9060207", "distance" : 664 }
{ "_id" : { "$oid" : "54bbea8244ae6757913a2a90" }, "from" : "9060207", "to" : "9060231", "distance" : 408 }
{ "_id" : { "$oid" : "54bbea8244ae6757913a2a91" }, "from" : "9060231", "to" : "9060229", "distance" : 255 }
{ "_id" : { "$oid" : "54bbea8344ae6757913a2a92" }, "from" : "9060229", "to" : "9060225", "distance" : 338 }
{ "_id" : { "$oid" : "54bbea8344ae6757913a2a93" }, "from" : "9060225", "to" : "9060223", "distance" : 376 }
{ "_id" : { "$oid" : "54bbea8344ae6757913a2a94" }, "from" : "9060223", "to" : "9060221", "distance" : 241 }
{ "_id" : { "$oid" : "54bbea8444ae6757913a2a95" }, "from" : "9060221", "to" : "9060218", "distance" : 207 }
{ "_id" : { "$oid" : "54bbea8444ae6757913a2a96" }, "from" : "9060218", "to" : "9060212", "distance" : 282 }
{ "_id" : { "$oid" : "54bbea8544ae6757913a2a97" }, "from" : "9060212", "to" : "9060210", "distance" : 479 }
{ "_id" : { "$oid" : "54bbea8544ae6757913a2a98" }, "from" : "9060210", "to" : "9060208", "distance" : 217 }
{ "_id" : { "$oid" : "54bbea8544ae6757913a2a99" }, "from" : "9060208", "to" : "4880206", "distance" : 497 }
{ "_id" : { "$oid" : "54bbea8644ae6757913a2a9a" }, "from" : "4880206", "to" : "4880202", "distance" : 401 }
{ "_id" : { "$oid" : "54bbea8644ae6757913a2a9b" }, "from" : "4880202", "to" : "4880204", "distance" : 532 }
{ "_id" : { "$oid" : "54bbea8644ae6757913a2a9c" }, "from" : "4880204", "to" : "4810246", "distance" : 335 }
{ "_id" : { "$oid" : "54bbea8744ae6757913a2a9d" }, "from" : "4810246", "to" : "4810222", "distance" : 400 }
{ "_id" : { "$oid" : "54bbea8744ae6757913a2a9e" }, "from" : "4810222", "to" : "4810220", "distance" : 482 }
{ "_id" : { "$oid" : "54bbea8844ae6757913a2a9f" }, "from" : "4810220", "to" : "4810248", "distance" : 320 }
{ "_id" : { "$oid" : "54bbea8844ae6757913a2aa0" }, "from" : "4810248", "to" : "4810209", "distance" : 230 }
{ "_id" : { "$oid" : "54bbea8844ae6757913a2aa1" }, "from" : "4810209", "to" : "4810207", "distance" : 275 }
{ "_id" : { "$oid" : "54bbea8944ae6757913a2aa2" }, "from" : "4810207", "to" : "4810205", "distance" : 263 }
{ "_id" : { "$oid" : "54bbea8944ae6757913a2aa3" }, "from" : "4810205", "to" : "4810230", "distance" : 680 }
{ "_id" : { "$oid" : "54bbea8a44ae6757913a2aa4" }, "from" : "4810230", "to" : "4810202", "distance" : 104 }
{ "_id" : { "$oid" : "54bbea8a44ae6757913a2aa5" }, "from" : "4810202", "to" : "4810225", "distance" : 422 }
{ "_id" : { "$oid" : "54bbea8a44ae6757913a2aa6" }, "from" : "4810225", "to" : "4810227", "distance" : 328 }
{ "_id" : { "$oid" : "54bbea8b44ae6757913a2aa7" }, "from" : "4810227", "to" : "4810232", "distance" : 462 }
{ "_id" : { "$oid" : "54bbea8b44ae6757913a2aa8" }, "from" : "4810232", "to" : "5000228", "distance" : 756 }
{ "_id" : { "$oid" : "54bbea8c44ae6757913a2aa9" }, "from" : "5000228", "to" : "5000226", "distance" : 1501 }
{ "_id" : { "$oid" : "54bbea8c44ae6757913a2aaa" }, "from" : "5000226", "to" : "5000204", "distance" : 1037 }
{ "_id" : { "$oid" : "54bbea8c44ae6757913a2aab" }, "from" : "5000204", "to" : "5000247", "distance" : 339 }
{ "_id" : { "$oid" : "54bbea8d44ae6757913a2aac" }, "from" : "5000247", "to" : "5000202", "distance" : 383 }
{ "_id" : { "$oid" : "54bbea8d44ae6757913a2aad" }, "from" : "5000202", "to" : "4710202", "distance" : 509 }
{ "_id" : { "$oid" : "54bbea8e44ae6757913a2aae" }, "from" : "4710202", "to" : "4710204", "distance" : 920 }
{ "_id" : { "$oid" : "54bbea8e44ae6757913a2aaf" }, "from" : "4710204", "to" : "4670201", "distance" : 432 }
{ "_id" : { "$oid" : "54bbea8e44ae6757913a2ab0" }, "from" : "4670201", "to" : "4670221", "distance" : 426 }
{ "_id" : { "$oid" : "54bbea8f44ae6757913a2ab1" }, "from" : "4670221", "to" : "4670215", "distance" : 380 }
{ "_id" : { "$oid" : "54bbea8f44ae6757913a2ab2" }, "from" : "4670215", "to" : "4680233", "distance" : 584 }
{ "_id" : { "$oid" : "54bbea9044ae6757913a2ab3" }, "from" : "4680233", "to" : "4680218", "distance" : 2523 }
{ "_id" : { "$oid" : "54bbea9044ae6757913a2ab4" }, "from" : "4680218", "to" : "4680250", "distance" : 1691 }
{ "_id" : { "$oid" : "54bbea9044ae6757913a2ab5" }, "from" : "4680250", "to" : "4680252", "distance" : 3257 }
{ "_id" : { "$oid" : "54bbea9144ae6757913a2ab6" }, "from" : "4680252", "to" : "4500224", "distance" : 534 }
{ "_id" : { "$oid" : "54bbea9144ae6757913a2ab7" }, "from" : "4500224", "to" : "4500210", "distance" : 1420 }
{ "_id" : { "$oid" : "54bbea9144ae6757913a2ab8" }, "from" : "4500210", "to" : "1342299", "distance" : 6107 }
{ "_id" : { "$oid" : "54bbea9244ae6757913a2ab9" }, "from" : "1342299", "to" : "1283187", "distance" : 5663 }
{ "_id" : { "$oid" : "54bbea9244ae6757913a2aba" }, "from" : "1283187", "to" : "1284116", "distance" : 1793 }
{ "_id" : { "$oid" : "54bbea9344ae6757913a2abb" }, "from" : "1284116", "to" : "1250104", "distance" : 948 }
{ "_id" : { "$oid" : "54bbea9344ae6757913a2abc" }, "from" : "1250104", "to" : "1173102", "distance" : 547 }
{ "_id" : { "$oid" : "54bbea9344ae6757913a2abd" }, "from" : "1173102", "to" : "1173111", "distance" : 766 }
{ "_id" : { "$oid" : "54bbea9444ae6757913a2abe" }, "from" : "1173111", "to" : "1220108", "distance" : 494 }
{ "_id" : { "$oid" : "54bbea9444ae6757913a2abf" }, "from" : "1220108", "to" : "1220182", "distance" : 383 }
{ "_id" : { "$oid" : "54bbea9544ae6757913a2ac0" }, "from" : "1220182", "to" : "1220111", "distance" : 503 }
{ "_id" : { "$oid" : "54bbea9544ae6757913a2ac1" }, "from" : "1220111", "to" : "1113229", "distance" : 698 }
{ "_id" : { "$oid" : "54bbea9644ae6757913a2ac2" }, "from" : "9050207", "to" : "9050209", "distance" : 179 }
{ "_id" : { "$oid" : "54bbea9644ae6757913a2ac3" }, "from" : "9050232", "to" : "9050235", "distance" : 304 }
{ "_id" : { "$oid" : "54bbea9644ae6757913a2ac4" }, "from" : "9050235", "to" : "9050226", "distance" : 441 }
{ "_id" : { "$oid" : "54bbea9744ae6757913a2ac5" }, "from" : "9050226", "to" : "9050227", "distance" : 402 }
{ "_id" : { "$oid" : "54bbea9744ae6757913a2ac6" }, "from" : "9050227", "to" : "9040218", "distance" : 1092 }
{ "_id" : { "$oid" : "54bbea9844ae6757913a2ac7" }, "from" : "9040218", "to" : "9040215", "distance" : 259 }
{ "_id" : { "$oid" : "54bbea9844ae6757913a2ac8" }, "from" : "9040215", "to" : "9040209", "distance" : 410 }
{ "_id" : { "$oid" : "54bbea9844ae6757913a2ac9" }, "from" : "9040209", "to" : "9040220", "distance" : 300 }
{ "_id" : { "$oid" : "54bbea9944ae6757913a2aca" }, "from" : "4810202", "to" : "4810231", "distance" : 566 }
{ "_id" : { "$oid" : "54bbea9944ae6757913a2acb" }, "from" : "4810231", "to" : "4720208", "distance" : 606 }
{ "_id" : { "$oid" : "54bbea9a44ae6757913a2acc" }, "from" : "4720208", "to" : "4720206", "distance" : 720 }
{ "_id" : { "$oid" : "54bbea9a44ae6757913a2acd" }, "from" : "4720206", "to" : "4720204", "distance" : 369 }
{ "_id" : { "$oid" : "54bbea9a44ae6757913a2ace" }, "from" : "4720204", "to" : "4720210", "distance" : 478 }
{ "_id" : { "$oid" : "54bbea9b44ae6757913a2acf" }, "from" : "4720210", "to" : "4720209", "distance" : 436 }
{ "_id" : { "$oid" : "54bbea9b44ae6757913a2ad0" }, "from" : "4720209", "to" : "4720202", "distance" : 491 }
{ "_id" : { "$oid" : "54bbea9b44ae6757913a2ad1" }, "from" : "4720202", "to" : "4720220", "distance" : 351 }
{ "_id" : { "$oid" : "54bbea9c44ae6757913a2ad2" }, "from" : "4720220", "to" : "4740235", "distance" : 327 }
{ "_id" : { "$oid" : "54bbea9c44ae6757913a2ad3" }, "from" : "4740235", "to" : "4740217", "distance" : 208 }
{ "_id" : { "$oid" : "54bbea9d44ae6757913a2ad4" }, "from" : "4740217", "to" : "4700210", "distance" : 310 }
{ "_id" : { "$oid" : "54bbea9d44ae6757913a2ad5" }, "from" : "4700210", "to" : "4700208", "distance" : 451 }
{ "_id" : { "$oid" : "54bbea9d44ae6757913a2ad6" }, "from" : "4700208", "to" : "4700206", "distance" : 274 }
{ "_id" : { "$oid" : "54bbea9e44ae6757913a2ad7" }, "from" : "4700206", "to" : "4700224", "distance" : 469 }
{ "_id" : { "$oid" : "54bbea9e44ae6757913a2ad8" }, "from" : "4700224", "to" : "4700225", "distance" : 479 }
{ "_id" : { "$oid" : "54bbea9f44ae6757913a2ad9" }, "from" : "4700225", "to" : "4710231", "distance" : 704 }
{ "_id" : { "$oid" : "54bbea9f44ae6757913a2ada" }, "from" : "4710231", "to" : "4710207", "distance" : 440 }
{ "_id" : { "$oid" : "54bbea9f44ae6757913a2adb" }, "from" : "4710207", "to" : "4670213", "distance" : 280 }
{ "_id" : { "$oid" : "54bbeaa044ae6757913a2adc" }, "from" : "4670213", "to" : "4670211", "distance" : 548 }
{ "_id" : { "$oid" : "54bbeaa044ae6757913a2add" }, "from" : "4670211", "to" : "4670207", "distance" : 355 }
{ "_id" : { "$oid" : "54bbeaa144ae6757913a2ade" }, "from" : "4670207", "to" : "4670204", "distance" : 544 }
{ "_id" : { "$oid" : "54bbeaa144ae6757913a2adf" }, "from" : "4670204", "to" : "4670221", "distance" : 277 }
{ "_id" : { "$oid" : "54bbeaa244ae6757913a2ae0" }, "from" : "4670216", "to" : "4670205", "distance" : 647 }
{ "_id" : { "$oid" : "54bbeaa244ae6757913a2ae1" }, "from" : "4670205", "to" : "4670210", "distance" : 579 }
{ "_id" : { "$oid" : "54bbeaa244ae6757913a2ae2" }, "from" : "4670210", "to" : "4670212", "distance" : 444 }
{ "_id" : { "$oid" : "54bbeaa344ae6757913a2ae3" }, "from" : "4670212", "to" : "4670214", "distance" : 413 }
{ "_id" : { "$oid" : "54bbeaa344ae6757913a2ae4" }, "from" : "4670214", "to" : "4710206", "distance" : 255 }
{ "_id" : { "$oid" : "54bbeaa344ae6757913a2ae5" }, "from" : "4710206", "to" : "4700227", "distance" : 480 }
{ "_id" : { "$oid" : "54bbeaa444ae6757913a2ae6" }, "from" : "4700227", "to" : "4700226", "distance" : 614 }
{ "_id" : { "$oid" : "54bbeaa444ae6757913a2ae7" }, "from" : "4700226", "to" : "4700222", "distance" : 558 }
{ "_id" : { "$oid" : "54bbeaa544ae6757913a2ae8" }, "from" : "4700222", "to" : "4700203", "distance" : 240 }
{ "_id" : { "$oid" : "54bbeaa544ae6757913a2ae9" }, "from" : "4700203", "to" : "4700205", "distance" : 241 }
{ "_id" : { "$oid" : "54bbeaa544ae6757913a2aea" }, "from" : "4700205", "to" : "4700207", "distance" : 241 }
{ "_id" : { "$oid" : "54bbeaa644ae6757913a2aeb" }, "from" : "4700207", "to" : "4700209", "distance" : 392 }
{ "_id" : { "$oid" : "54bbeaa644ae6757913a2aec" }, "from" : "4700209", "to" : "4740216", "distance" : 324 }
{ "_id" : { "$oid" : "54bbeaa744ae6757913a2aed" }, "from" : "4740216", "to" : "4740213", "distance" : 303 }
{ "_id" : { "$oid" : "54bbeaa744ae6757913a2aee" }, "from" : "4740213", "to" : "4720221", "distance" : 220 }
{ "_id" : { "$oid" : "54bbeaa744ae6757913a2aef" }, "from" : "4720221", "to" : "4720222", "distance" : 167 }
{ "_id" : { "$oid" : "54bbeaa844ae6757913a2af0" }, "from" : "4720222", "to" : "4720201", "distance" : 161 }
{ "_id" : { "$oid" : "54bbeaa844ae6757913a2af1" }, "from" : "4720201", "to" : "4720216", "distance" : 489 }
{ "_id" : { "$oid" : "54bbeaa944ae6757913a2af2" }, "from" : "4720216", "to" : "4720217", "distance" : 244 }
{ "_id" : { "$oid" : "54bbeaa944ae6757913a2af3" }, "from" : "4720217", "to" : "4720218", "distance" : 220 }
{ "_id" : { "$oid" : "54bbeaa944ae6757913a2af4" }, "from" : "4720218", "to" : "4720203", "distance" : 358 }
{ "_id" : { "$oid" : "54bbeaaa44ae6757913a2af5" }, "from" : "4720203", "to" : "4720224", "distance" : 243 }
{ "_id" : { "$oid" : "54bbeaaa44ae6757913a2af6" }, "from" : "4720224", "to" : "4720205", "distance" : 222 }
{ "_id" : { "$oid" : "54bbeaab44ae6757913a2af7" }, "from" : "4720205", "to" : "4720211", "distance" : 141 }
{ "_id" : { "$oid" : "54bbeaab44ae6757913a2af8" }, "from" : "4720211", "to" : "4720207", "distance" : 502 }
{ "_id" : { "$oid" : "54bbeaab44ae6757913a2af9" }, "from" : "4720207", "to" : "4810238", "distance" : 821 }
{ "_id" : { "$oid" : "54bbeaac44ae6757913a2afa" }, "from" : "9040210", "to" : "9040217", "distance" : 444 }
{ "_id" : { "$oid" : "54bbeaac44ae6757913a2afb" }, "from" : "9040217", "to" : "9040219", "distance" : 264 }
{ "_id" : { "$oid" : "54bbeaad44ae6757913a2afc" }, "from" : "9040219", "to" : "9050229", "distance" : 1134 }
{ "_id" : { "$oid" : "54bbeaad44ae6757913a2afd" }, "from" : "9050229", "to" : "9050225", "distance" : 360 }
{ "_id" : { "$oid" : "54bbeaad44ae6757913a2afe" }, "from" : "9050225", "to" : "9050234", "distance" : 386 }
{ "_id" : { "$oid" : "54bbeaae44ae6757913a2aff" }, "from" : "9050234", "to" : "9050233", "distance" : 324 }
{ "_id" : { "$oid" : "54bbeaae44ae6757913a2b00" }, "from" : "9050208", "to" : "9050207", "distance" : 84 }
{ "_id" : { "$oid" : "54bbeaaf44ae6757913a2b01" }, "from" : "9040206", "to" : "9040224", "distance" : 293 }
{ "_id" : { "$oid" : "54bbeaaf44ae6757913a2b02" }, "from" : "9040224", "to" : "9040213", "distance" : 560 }
{ "_id" : { "$oid" : "54bbeab044ae6757913a2b03" }, "from" : "9040213", "to" : "9010240", "distance" : 355 }
{ "_id" : { "$oid" : "54bbeab044ae6757913a2b04" }, "from" : "9010240", "to" : "9010237", "distance" : 258 }
{ "_id" : { "$oid" : "54bbeab044ae6757913a2b05" }, "from" : "9010237", "to" : "9010235", "distance" : 452 }
{ "_id" : { "$oid" : "54bbeab144ae6757913a2b06" }, "from" : "9010235", "to" : "9010233", "distance" : 415 }
{ "_id" : { "$oid" : "54bbeab144ae6757913a2b07" }, "from" : "9010233", "to" : "9010231", "distance" : 359 }
{ "_id" : { "$oid" : "54bbeab244ae6757913a2b08" }, "from" : "9010231", "to" : "9010229", "distance" : 438 }
{ "_id" : { "$oid" : "54bbeab244ae6757913a2b09" }, "from" : "9010229", "to" : "9010246", "distance" : 190 }
{ "_id" : { "$oid" : "54bbeab244ae6757913a2b0a" }, "from" : "9010246", "to" : "9010206", "distance" : 280 }
{ "_id" : { "$oid" : "54bbeab344ae6757913a2b0b" }, "from" : "9010206", "to" : "9010204", "distance" : 462 }
{ "_id" : { "$oid" : "54bbeab344ae6757913a2b0c" }, "from" : "9010204", "to" : "9010238", "distance" : 151 }
{ "_id" : { "$oid" : "54bbeab444ae6757913a2b0d" }, "from" : "9010238", "to" : "9010205", "distance" : 317 }
{ "_id" : { "$oid" : "54bbeab444ae6757913a2b0e" }, "from" : "9010205", "to" : "9010245", "distance" : 286 }
{ "_id" : { "$oid" : "54bbeab444ae6757913a2b0f" }, "from" : "9010245", "to" : "9010230", "distance" : 405 }
{ "_id" : { "$oid" : "54bbeab544ae6757913a2b10" }, "from" : "9010230", "to" : "9010232", "distance" : 268 }
{ "_id" : { "$oid" : "54bbeab544ae6757913a2b11" }, "from" : "9010232", "to" : "9010234", "distance" : 389 }
{ "_id" : { "$oid" : "54bbeab644ae6757913a2b12" }, "from" : "9010234", "to" : "9010236", "distance" : 384 }
{ "_id" : { "$oid" : "54bbeab644ae6757913a2b13" }, "from" : "9010236", "to" : "9010255", "distance" : 434 }
{ "_id" : { "$oid" : "54bbeab644ae6757913a2b14" }, "from" : "9010255", "to" : "9010239", "distance" : 289 }
{ "_id" : { "$oid" : "54bbeab744ae6757913a2b15" }, "from" : "9010239", "to" : "9040207", "distance" : 313 }
{ "_id" : { "$oid" : "54bbeab744ae6757913a2b16" }, "from" : "9040207", "to" : "9040220", "distance" : 485 }
{ "_id" : { "$oid" : "54bbeab844ae6757913a2b17" }, "from" : "4750217", "to" : "4750208", "distance" : 340 }
{ "_id" : { "$oid" : "54bbeab844ae6757913a2b18" }, "from" : "4750208", "to" : "4750210", "distance" : 315 }