-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdistances_ruter.json
7237 lines (7237 loc) · 765 KB
/
distances_ruter.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" : "54db4b0644ae03054911935b" }, "from" : "2130301", "to" : "2130027", "distance" : 504 }
{ "_id" : { "$oid" : "54db4b0744ae03054911935c" }, "from" : "2130027", "to" : "2130026", "distance" : 228 }
{ "_id" : { "$oid" : "54db4b0844ae03054911935d" }, "from" : "2130026", "to" : "2130024", "distance" : 768 }
{ "_id" : { "$oid" : "54db4b0844ae03054911935e" }, "from" : "2130024", "to" : "2140603", "distance" : 635 }
{ "_id" : { "$oid" : "54db4b0844ae03054911935f" }, "from" : "2140603", "to" : "2130025", "distance" : 1979 }
{ "_id" : { "$oid" : "54db4b0944ae030549119360" }, "from" : "2130025", "to" : "2130023", "distance" : 690 }
{ "_id" : { "$oid" : "54db4b0944ae030549119361" }, "from" : "2130023", "to" : "2130402", "distance" : 542 }
{ "_id" : { "$oid" : "54db4b0944ae030549119362" }, "from" : "2130402", "to" : "2130401", "distance" : 471 }
{ "_id" : { "$oid" : "54db4b0a44ae030549119363" }, "from" : "2130401", "to" : "2130403", "distance" : 182 }
{ "_id" : { "$oid" : "54db4b0a44ae030549119364" }, "from" : "2130403", "to" : "2130170", "distance" : 1532 }
{ "_id" : { "$oid" : "54db4b3744ae030549119365" }, "from" : "3010921", "to" : "3010919", "distance" : 394 }
{ "_id" : { "$oid" : "54db4b3844ae030549119366" }, "from" : "3010919", "to" : "3010918", "distance" : 307 }
{ "_id" : { "$oid" : "54db4b3844ae030549119367" }, "from" : "3010918", "to" : "3010917", "distance" : 243 }
{ "_id" : { "$oid" : "54db4b3944ae030549119368" }, "from" : "3010917", "to" : "3010918", "distance" : 243 }
{ "_id" : { "$oid" : "54db4b3944ae030549119369" }, "from" : "3010918", "to" : "3010919", "distance" : 307 }
{ "_id" : { "$oid" : "54db4b3a44ae03054911936a" }, "from" : "3010919", "to" : "3010921", "distance" : 394 }
{ "_id" : { "$oid" : "54db4ba044ae03054911936b" }, "from" : "2160005", "to" : "3010049", "distance" : 53579 }
{ "_id" : { "$oid" : "54db4ca544ae43bd2e2b502d" }, "from" : "2310308", "to" : "2310306", "distance" : 231 }
{ "_id" : { "$oid" : "54db4ca644ae43bd2e2b502e" }, "from" : "2310306", "to" : "2310214", "distance" : 564 }
{ "_id" : { "$oid" : "54db4ca644ae43bd2e2b502f" }, "from" : "2310214", "to" : "2310301", "distance" : 570 }
{ "_id" : { "$oid" : "54db4ca644ae43bd2e2b5030" }, "from" : "2310301", "to" : "2310290", "distance" : 800 }
{ "_id" : { "$oid" : "54db4ca744ae43bd2e2b5031" }, "from" : "2310290", "to" : "2310280", "distance" : 663 }
{ "_id" : { "$oid" : "54db4ca744ae43bd2e2b5032" }, "from" : "2310280", "to" : "2310199", "distance" : 461 }
{ "_id" : { "$oid" : "54db4ca844ae43bd2e2b5033" }, "from" : "2310199", "to" : "2310500", "distance" : 874 }
{ "_id" : { "$oid" : "54db4ca844ae43bd2e2b5034" }, "from" : "2310500", "to" : "2310110", "distance" : 620 }
{ "_id" : { "$oid" : "54db4ca944ae43bd2e2b5035" }, "from" : "2310110", "to" : "2310160", "distance" : 253 }
{ "_id" : { "$oid" : "54db4ca944ae43bd2e2b5036" }, "from" : "2310160", "to" : "2310170", "distance" : 741 }
{ "_id" : { "$oid" : "54db4ca944ae43bd2e2b5037" }, "from" : "2310170", "to" : "2310105", "distance" : 387 }
{ "_id" : { "$oid" : "54db4caa44ae43bd2e2b5038" }, "from" : "2310105", "to" : "2310140", "distance" : 575 }
{ "_id" : { "$oid" : "54db4caa44ae43bd2e2b5039" }, "from" : "2310140", "to" : "2310142", "distance" : 1666 }
{ "_id" : { "$oid" : "54db4cab44ae43bd2e2b503a" }, "from" : "2310142", "to" : "2310144", "distance" : 156 }
{ "_id" : { "$oid" : "54db4cab44ae43bd2e2b503b" }, "from" : "2310144", "to" : "2310109", "distance" : 777 }
{ "_id" : { "$oid" : "54db4cac44ae43bd2e2b503c" }, "from" : "2310109", "to" : "2310130", "distance" : 1097 }
{ "_id" : { "$oid" : "54db4cac44ae43bd2e2b503d" }, "from" : "2310130", "to" : "2310125", "distance" : 1107 }
{ "_id" : { "$oid" : "54db4cac44ae43bd2e2b503e" }, "from" : "2310125", "to" : "2310120", "distance" : 389 }
{ "_id" : { "$oid" : "54db4cad44ae43bd2e2b503f" }, "from" : "2310120", "to" : "2330115", "distance" : 3870 }
{ "_id" : { "$oid" : "54db4cad44ae43bd2e2b5040" }, "from" : "2330115", "to" : "2330113", "distance" : 2526 }
{ "_id" : { "$oid" : "54db4cae44ae43bd2e2b5041" }, "from" : "2330113", "to" : "2330111", "distance" : 5506 }
{ "_id" : { "$oid" : "54db4cae44ae43bd2e2b5042" }, "from" : "2330111", "to" : "2330117", "distance" : 6659 }
{ "_id" : { "$oid" : "54db4cae44ae43bd2e2b5043" }, "from" : "2330117", "to" : "2330105", "distance" : 1079 }
{ "_id" : { "$oid" : "54db4caf44ae43bd2e2b5044" }, "from" : "2330105", "to" : "2330110", "distance" : 372 }
{ "_id" : { "$oid" : "54db4caf44ae43bd2e2b5045" }, "from" : "2330110", "to" : "2330118", "distance" : 2996 }
{ "_id" : { "$oid" : "54db4cb044ae43bd2e2b5046" }, "from" : "2330118", "to" : "2330120", "distance" : 3287 }
{ "_id" : { "$oid" : "54db4cb044ae43bd2e2b5047" }, "from" : "2330120", "to" : "2330122", "distance" : 5228 }
{ "_id" : { "$oid" : "54db4cb044ae43bd2e2b5048" }, "from" : "2330122", "to" : "2330125", "distance" : 484 }
{ "_id" : { "$oid" : "54db4cb144ae43bd2e2b5049" }, "from" : "2330125", "to" : "2330128", "distance" : 561 }
{ "_id" : { "$oid" : "54db4cb144ae43bd2e2b504a" }, "from" : "2330128", "to" : "2330130", "distance" : 529 }
{ "_id" : { "$oid" : "54db4cb244ae43bd2e2b504b" }, "from" : "2330130", "to" : "2330134", "distance" : 1048 }
{ "_id" : { "$oid" : "54db4cb244ae43bd2e2b504c" }, "from" : "2330134", "to" : "2330135", "distance" : 661 }
{ "_id" : { "$oid" : "54db4cb244ae43bd2e2b504d" }, "from" : "2330135", "to" : "2330136", "distance" : 1847 }
{ "_id" : { "$oid" : "54db4cb344ae43bd2e2b504e" }, "from" : "2330136", "to" : "2330138", "distance" : 794 }
{ "_id" : { "$oid" : "54db4cb344ae43bd2e2b504f" }, "from" : "2330138", "to" : "2330140", "distance" : 1210 }
{ "_id" : { "$oid" : "54db4cb444ae43bd2e2b5050" }, "from" : "2210610", "to" : "2210353", "distance" : 4604 }
{ "_id" : { "$oid" : "54db4cb444ae43bd2e2b5051" }, "from" : "2210353", "to" : "2210612", "distance" : 620 }
{ "_id" : { "$oid" : "54db4cb444ae43bd2e2b5052" }, "from" : "2210612", "to" : "2210614", "distance" : 1820 }
{ "_id" : { "$oid" : "54db4cb544ae43bd2e2b5053" }, "from" : "2210614", "to" : "2210616", "distance" : 999 }
{ "_id" : { "$oid" : "54db4cb544ae43bd2e2b5054" }, "from" : "2210616", "to" : "2210618", "distance" : 2161 }
{ "_id" : { "$oid" : "54db4cb644ae43bd2e2b5055" }, "from" : "2210618", "to" : "2210620", "distance" : 5037 }
{ "_id" : { "$oid" : "54db4cb644ae43bd2e2b5056" }, "from" : "2210620", "to" : "2210487", "distance" : 826 }
{ "_id" : { "$oid" : "54db4cb644ae43bd2e2b5057" }, "from" : "2210487", "to" : "2210622", "distance" : 695 }
{ "_id" : { "$oid" : "54db4cb744ae43bd2e2b5058" }, "from" : "2210622", "to" : "2210490", "distance" : 673 }
{ "_id" : { "$oid" : "54db4cb744ae43bd2e2b5059" }, "from" : "2210490", "to" : "2210492", "distance" : 1462 }
{ "_id" : { "$oid" : "54db4cb744ae43bd2e2b505a" }, "from" : "2210492", "to" : "2210489", "distance" : 2893 }
{ "_id" : { "$oid" : "54db4cb844ae43bd2e2b505b" }, "from" : "2210489", "to" : "2210493", "distance" : 2026 }
{ "_id" : { "$oid" : "54db4cb844ae43bd2e2b505c" }, "from" : "2210493", "to" : "2210494", "distance" : 591 }
{ "_id" : { "$oid" : "54db4cb944ae43bd2e2b505d" }, "from" : "2210494", "to" : "2210495", "distance" : 362 }
{ "_id" : { "$oid" : "54db4cb944ae43bd2e2b505e" }, "from" : "2210495", "to" : "2210496", "distance" : 928 }
{ "_id" : { "$oid" : "54db4cb944ae43bd2e2b505f" }, "from" : "2210496", "to" : "2210390", "distance" : 454 }
{ "_id" : { "$oid" : "54db4cba44ae43bd2e2b5060" }, "from" : "2210390", "to" : "2210496", "distance" : 454 }
{ "_id" : { "$oid" : "54db4cba44ae43bd2e2b5061" }, "from" : "2210496", "to" : "2210497", "distance" : 820 }
{ "_id" : { "$oid" : "54db4cbb44ae43bd2e2b5062" }, "from" : "2210497", "to" : "2210400", "distance" : 5479 }
{ "_id" : { "$oid" : "54db4cbb44ae43bd2e2b5063" }, "from" : "2210400", "to" : "2210505", "distance" : 364 }
{ "_id" : { "$oid" : "54db4cbb44ae43bd2e2b5064" }, "from" : "2210505", "to" : "2210504", "distance" : 512 }
{ "_id" : { "$oid" : "54db4cbc44ae43bd2e2b5065" }, "from" : "2210504", "to" : "2210506", "distance" : 1685 }
{ "_id" : { "$oid" : "54db4cbc44ae43bd2e2b5066" }, "from" : "2210506", "to" : "2210502", "distance" : 1463 }
{ "_id" : { "$oid" : "54db4cbc44ae43bd2e2b5067" }, "from" : "2210502", "to" : "2210518", "distance" : 648 }
{ "_id" : { "$oid" : "54db4cbd44ae43bd2e2b5068" }, "from" : "2210518", "to" : "2210525", "distance" : 610 }
{ "_id" : { "$oid" : "54db4cbd44ae43bd2e2b5069" }, "from" : "2210525", "to" : "2210524", "distance" : 592 }
{ "_id" : { "$oid" : "54db4cbe44ae43bd2e2b506a" }, "from" : "3010951", "to" : "3010952", "distance" : 310 }
{ "_id" : { "$oid" : "54db4cbe44ae43bd2e2b506b" }, "from" : "3010952", "to" : "3010962", "distance" : 622 }
{ "_id" : { "$oid" : "54db4cbf44ae43bd2e2b506c" }, "from" : "3010962", "to" : "3010978", "distance" : 3737 }
{ "_id" : { "$oid" : "54db4cbf44ae43bd2e2b506d" }, "from" : "3010978", "to" : "3010979", "distance" : 334 }
{ "_id" : { "$oid" : "54db4cc044ae43bd2e2b506e" }, "from" : "3010979", "to" : "3010980", "distance" : 287 }
{ "_id" : { "$oid" : "54db4cc044ae43bd2e2b506f" }, "from" : "3010980", "to" : "3010979", "distance" : 287 }
{ "_id" : { "$oid" : "54db4cc144ae43bd2e2b5070" }, "from" : "3010979", "to" : "3010978", "distance" : 334 }
{ "_id" : { "$oid" : "54db4cc144ae43bd2e2b5071" }, "from" : "3010978", "to" : "3010952", "distance" : 535 }
{ "_id" : { "$oid" : "54db4cc144ae43bd2e2b5072" }, "from" : "3010952", "to" : "3010951", "distance" : 480 }
{ "_id" : { "$oid" : "54db4cc244ae43bd2e2b5073" }, "from" : "2190860", "to" : "2190859", "distance" : 350 }
{ "_id" : { "$oid" : "54db4cc244ae43bd2e2b5074" }, "from" : "2190859", "to" : "2190858", "distance" : 333 }
{ "_id" : { "$oid" : "54db4cc344ae43bd2e2b5075" }, "from" : "2190858", "to" : "2190857", "distance" : 500 }
{ "_id" : { "$oid" : "54db4cc344ae43bd2e2b5076" }, "from" : "2190857", "to" : "2190854", "distance" : 1025 }
{ "_id" : { "$oid" : "54db4cc444ae43bd2e2b5077" }, "from" : "2190854", "to" : "2190855", "distance" : 417 }
{ "_id" : { "$oid" : "54db4cc444ae43bd2e2b5078" }, "from" : "2190855", "to" : "2190854", "distance" : 417 }
{ "_id" : { "$oid" : "54db4cc444ae43bd2e2b5079" }, "from" : "2190854", "to" : "2190862", "distance" : 523 }
{ "_id" : { "$oid" : "54db4cc544ae43bd2e2b507a" }, "from" : "2190862", "to" : "2190850", "distance" : 304 }
{ "_id" : { "$oid" : "54db4cc544ae43bd2e2b507b" }, "from" : "2190850", "to" : "2190830", "distance" : 9113 }
{ "_id" : { "$oid" : "54db4cc544ae43bd2e2b507c" }, "from" : "2190830", "to" : "2190829", "distance" : 8400 }
{ "_id" : { "$oid" : "54db4cc644ae43bd2e2b507d" }, "from" : "2190829", "to" : "2190828", "distance" : 2508 }
{ "_id" : { "$oid" : "54db4cc644ae43bd2e2b507e" }, "from" : "2190828", "to" : "2190827", "distance" : 725 }
{ "_id" : { "$oid" : "54db4cc744ae43bd2e2b507f" }, "from" : "2190827", "to" : "2190826", "distance" : 344 }
{ "_id" : { "$oid" : "54db4cc744ae43bd2e2b5080" }, "from" : "2190826", "to" : "2190825", "distance" : 837 }
{ "_id" : { "$oid" : "54db4cc744ae43bd2e2b5081" }, "from" : "2190825", "to" : "2190820", "distance" : 460 }
{ "_id" : { "$oid" : "54db4cc844ae43bd2e2b5082" }, "from" : "2190820", "to" : "2190818", "distance" : 739 }
{ "_id" : { "$oid" : "54db4cc844ae43bd2e2b5083" }, "from" : "2190818", "to" : "2190815", "distance" : 496 }
{ "_id" : { "$oid" : "54db4cc944ae43bd2e2b5084" }, "from" : "2190815", "to" : "2190810", "distance" : 568 }
{ "_id" : { "$oid" : "54db4cc944ae43bd2e2b5085" }, "from" : "2190810", "to" : "2190808", "distance" : 354 }
{ "_id" : { "$oid" : "54db4cc944ae43bd2e2b5086" }, "from" : "2190808", "to" : "2190149", "distance" : 683 }
{ "_id" : { "$oid" : "54db4cca44ae43bd2e2b5087" }, "from" : "2190149", "to" : "2190152", "distance" : 1826 }
{ "_id" : { "$oid" : "54db4cca44ae43bd2e2b5088" }, "from" : "2190152", "to" : "2190122", "distance" : 434 }
{ "_id" : { "$oid" : "54db4ccb44ae43bd2e2b5089" }, "from" : "2190122", "to" : "2190125", "distance" : 399 }
{ "_id" : { "$oid" : "54db4ccb44ae43bd2e2b508a" }, "from" : "2190125", "to" : "2190119", "distance" : 251 }
{ "_id" : { "$oid" : "54db4ccb44ae43bd2e2b508b" }, "from" : "2190119", "to" : "2190101", "distance" : 404 }
{ "_id" : { "$oid" : "54db4ccc44ae43bd2e2b508c" }, "from" : "2190101", "to" : "2190107", "distance" : 649 }
{ "_id" : { "$oid" : "54db4ccc44ae43bd2e2b508d" }, "from" : "2190107", "to" : "2190106", "distance" : 316 }
{ "_id" : { "$oid" : "54db4ccc44ae43bd2e2b508e" }, "from" : "2190106", "to" : "2190105", "distance" : 277 }
{ "_id" : { "$oid" : "54db4ccd44ae43bd2e2b508f" }, "from" : "2190105", "to" : "3012552", "distance" : 1123 }
{ "_id" : { "$oid" : "54db4ccd44ae43bd2e2b5090" }, "from" : "3012552", "to" : "3012534", "distance" : 781 }
{ "_id" : { "$oid" : "54db4cce44ae43bd2e2b5091" }, "from" : "3012534", "to" : "3012522", "distance" : 762 }
{ "_id" : { "$oid" : "54db4cce44ae43bd2e2b5092" }, "from" : "3012522", "to" : "3012501", "distance" : 985 }
{ "_id" : { "$oid" : "54db4cce44ae43bd2e2b5093" }, "from" : "3012501", "to" : "3012507", "distance" : 560 }
{ "_id" : { "$oid" : "54db4ccf44ae43bd2e2b5094" }, "from" : "3012507", "to" : "3010140", "distance" : 633 }
{ "_id" : { "$oid" : "54db4ccf44ae43bd2e2b5095" }, "from" : "3010140", "to" : "3010132", "distance" : 572 }
{ "_id" : { "$oid" : "54db4ccf44ae43bd2e2b5096" }, "from" : "3010132", "to" : "3010111", "distance" : 568 }
{ "_id" : { "$oid" : "54db4cd044ae43bd2e2b5097" }, "from" : "3010111", "to" : "3010110", "distance" : 188 }
{ "_id" : { "$oid" : "54db51f644ae2c187f8403b0" }, "from" : "3010110", "to" : "3010035", "distance" : 0 }
{ "_id" : { "$oid" : "54db51f644ae2c187f8403b1" }, "from" : "3010035", "to" : "3010038", "distance" : 1011 }
{ "_id" : { "$oid" : "54db51f644ae2c187f8403b2" }, "from" : "3010038", "to" : "3010056", "distance" : 481 }
{ "_id" : { "$oid" : "54db51f744ae2c187f8403b3" }, "from" : "3010056", "to" : "3010066", "distance" : 850 }
{ "_id" : { "$oid" : "54db51f744ae2c187f8403b4" }, "from" : "3010066", "to" : "3010619", "distance" : 821 }
{ "_id" : { "$oid" : "54db51f844ae2c187f8403b5" }, "from" : "3011441", "to" : "3010643", "distance" : 4020 }
{ "_id" : { "$oid" : "54db51f844ae2c187f8403b6" }, "from" : "3010643", "to" : "3010642", "distance" : 250 }
{ "_id" : { "$oid" : "54db51f944ae2c187f8403b7" }, "from" : "3010642", "to" : "3010641", "distance" : 307 }
{ "_id" : { "$oid" : "54db51f944ae2c187f8403b8" }, "from" : "3010641", "to" : "3010646", "distance" : 2470 }
{ "_id" : { "$oid" : "54db51f944ae2c187f8403b9" }, "from" : "3010646", "to" : "3010601", "distance" : 1132 }
{ "_id" : { "$oid" : "54db51fa44ae2c187f8403ba" }, "from" : "3010601", "to" : "3010605", "distance" : 254 }
{ "_id" : { "$oid" : "54db51fa44ae2c187f8403bb" }, "from" : "3010605", "to" : "3010536", "distance" : 551 }
{ "_id" : { "$oid" : "54db51fb44ae2c187f8403bc" }, "from" : "3010536", "to" : "3011402", "distance" : 1909 }
{ "_id" : { "$oid" : "54db51fb44ae2c187f8403bd" }, "from" : "3011402", "to" : "3010525", "distance" : 633 }
{ "_id" : { "$oid" : "54db51fb44ae2c187f8403be" }, "from" : "3010525", "to" : "3010435", "distance" : 1684 }
{ "_id" : { "$oid" : "54db51fc44ae2c187f8403bf" }, "from" : "3010435", "to" : "3010436", "distance" : 463 }
{ "_id" : { "$oid" : "54db51fc44ae2c187f8403c0" }, "from" : "3010436", "to" : "3010430", "distance" : 385 }
{ "_id" : { "$oid" : "54db51fd44ae2c187f8403c1" }, "from" : "3010430", "to" : "3010425", "distance" : 483 }
{ "_id" : { "$oid" : "54db51fd44ae2c187f8403c2" }, "from" : "3010425", "to" : "3010410", "distance" : 439 }
{ "_id" : { "$oid" : "54db51fd44ae2c187f8403c3" }, "from" : "3010410", "to" : "3010346", "distance" : 583 }
{ "_id" : { "$oid" : "54db51fe44ae2c187f8403c4" }, "from" : "3010346", "to" : "3010340", "distance" : 811 }
{ "_id" : { "$oid" : "54db51fe44ae2c187f8403c5" }, "from" : "3010340", "to" : "3010343", "distance" : 1406 }
{ "_id" : { "$oid" : "54db51fe44ae2c187f8403c6" }, "from" : "3010343", "to" : "3010344", "distance" : 938 }
{ "_id" : { "$oid" : "54db51ff44ae2c187f8403c7" }, "from" : "3010344", "to" : "3010201", "distance" : 565 }
{ "_id" : { "$oid" : "54db51ff44ae2c187f8403c8" }, "from" : "2160250", "to" : "2160232", "distance" : 732 }
{ "_id" : { "$oid" : "54db520044ae2c187f8403c9" }, "from" : "2160232", "to" : "2160230", "distance" : 430 }
{ "_id" : { "$oid" : "54db520044ae2c187f8403ca" }, "from" : "2160230", "to" : "2160222", "distance" : 472 }
{ "_id" : { "$oid" : "54db520144ae2c187f8403cb" }, "from" : "2160222", "to" : "2160036", "distance" : 306 }
{ "_id" : { "$oid" : "54db520144ae2c187f8403cc" }, "from" : "2160036", "to" : "2160034", "distance" : 511 }
{ "_id" : { "$oid" : "54db520144ae2c187f8403cd" }, "from" : "2160034", "to" : "2160032", "distance" : 776 }
{ "_id" : { "$oid" : "54db520244ae2c187f8403ce" }, "from" : "2160032", "to" : "2160020", "distance" : 346 }
{ "_id" : { "$oid" : "54db520244ae2c187f8403cf" }, "from" : "2160020", "to" : "2160011", "distance" : 377 }
{ "_id" : { "$oid" : "54db520344ae2c187f8403d0" }, "from" : "2160011", "to" : "2160010", "distance" : 335 }
{ "_id" : { "$oid" : "54db520344ae2c187f8403d1" }, "from" : "2160010", "to" : "2160370", "distance" : 584 }
{ "_id" : { "$oid" : "54db520344ae2c187f8403d2" }, "from" : "2160370", "to" : "2160007", "distance" : 679 }
{ "_id" : { "$oid" : "54db520444ae2c187f8403d3" }, "from" : "2160007", "to" : "2160005", "distance" : 710 }
{ "_id" : { "$oid" : "54db520444ae2c187f8403d4" }, "from" : "3014619", "to" : "3011401", "distance" : 2347 }
{ "_id" : { "$oid" : "54db520544ae2c187f8403d5" }, "from" : "3011401", "to" : "3011405", "distance" : 1131 }
{ "_id" : { "$oid" : "54db520544ae2c187f8403d6" }, "from" : "3011405", "to" : "3012101", "distance" : 1799 }
{ "_id" : { "$oid" : "54db520644ae2c187f8403d7" }, "from" : "3012101", "to" : "3012102", "distance" : 1175 }
{ "_id" : { "$oid" : "54db520644ae2c187f8403d8" }, "from" : "3012102", "to" : "3012081", "distance" : 721 }
{ "_id" : { "$oid" : "54db520644ae2c187f8403d9" }, "from" : "3012081", "to" : "3012061", "distance" : 777 }
{ "_id" : { "$oid" : "54db520744ae2c187f8403da" }, "from" : "3012061", "to" : "3012064", "distance" : 517 }
{ "_id" : { "$oid" : "54db520744ae2c187f8403db" }, "from" : "3012064", "to" : "3012046", "distance" : 2034 }
{ "_id" : { "$oid" : "54db520844ae2c187f8403dc" }, "from" : "3012046", "to" : "3012043", "distance" : 2779 }
{ "_id" : { "$oid" : "54db520844ae2c187f8403dd" }, "from" : "3012043", "to" : "3012041", "distance" : 3416 }
{ "_id" : { "$oid" : "54db520944ae2c187f8403de" }, "from" : "3012041", "to" : "3011913", "distance" : 2363 }
{ "_id" : { "$oid" : "54db520944ae2c187f8403df" }, "from" : "3011913", "to" : "3011921", "distance" : 588 }
{ "_id" : { "$oid" : "54db520944ae2c187f8403e0" }, "from" : "3011921", "to" : "3011932", "distance" : 2317 }
{ "_id" : { "$oid" : "54db520a44ae2c187f8403e1" }, "from" : "3011932", "to" : "3011943", "distance" : 1562 }
{ "_id" : { "$oid" : "54db520a44ae2c187f8403e2" }, "from" : "3011943", "to" : "3011717", "distance" : 541 }
{ "_id" : { "$oid" : "54db520b44ae2c187f8403e3" }, "from" : "3011717", "to" : "3011716", "distance" : 1467 }
{ "_id" : { "$oid" : "54db520b44ae2c187f8403e4" }, "from" : "3011716", "to" : "3011741", "distance" : 3196 }
{ "_id" : { "$oid" : "54db520b44ae2c187f8403e5" }, "from" : "3011741", "to" : "3011743", "distance" : 557 }
{ "_id" : { "$oid" : "54db520c44ae2c187f8403e6" }, "from" : "3011743", "to" : "3011744", "distance" : 436 }
{ "_id" : { "$oid" : "54db520d44ae2c187f8403e7" }, "from" : "3011744", "to" : "3011745", "distance" : 3597 }
{ "_id" : { "$oid" : "54db520d44ae2c187f8403e8" }, "from" : "3011745", "to" : "2330010", "distance" : 5298 }
{ "_id" : { "$oid" : "54db520d44ae2c187f8403e9" }, "from" : "2330010", "to" : "2330117", "distance" : 418 }
{ "_id" : { "$oid" : "54db520e44ae2c187f8403ea" }, "from" : "2330117", "to" : "2330111", "distance" : 392 }
{ "_id" : { "$oid" : "54db520e44ae2c187f8403eb" }, "from" : "2330111", "to" : "2330113", "distance" : 903 }
{ "_id" : { "$oid" : "54db520f44ae2c187f8403ec" }, "from" : "2330113", "to" : "2330115", "distance" : 565 }
{ "_id" : { "$oid" : "54db520f44ae2c187f8403ed" }, "from" : "2330115", "to" : "2310120", "distance" : 781 }
{ "_id" : { "$oid" : "54db520f44ae2c187f8403ee" }, "from" : "2310120", "to" : "2310125", "distance" : 399 }
{ "_id" : { "$oid" : "54db521044ae2c187f8403ef" }, "from" : "2310125", "to" : "2310130", "distance" : 545 }
{ "_id" : { "$oid" : "54db521044ae2c187f8403f0" }, "from" : "2310130", "to" : "2310109", "distance" : 932 }
{ "_id" : { "$oid" : "54db521044ae2c187f8403f1" }, "from" : "2310109", "to" : "2310144", "distance" : 779 }
{ "_id" : { "$oid" : "54db521144ae2c187f8403f2" }, "from" : "2310144", "to" : "2310140", "distance" : 646 }
{ "_id" : { "$oid" : "54db521144ae2c187f8403f3" }, "from" : "2310140", "to" : "2310105", "distance" : 450 }
{ "_id" : { "$oid" : "54db521244ae2c187f8403f4" }, "from" : "2310105", "to" : "2310170", "distance" : 387 }
{ "_id" : { "$oid" : "54db521244ae2c187f8403f5" }, "from" : "2310170", "to" : "2310160", "distance" : 749 }
{ "_id" : { "$oid" : "54db521244ae2c187f8403f6" }, "from" : "2310160", "to" : "2310110", "distance" : 253 }
{ "_id" : { "$oid" : "54db521344ae2c187f8403f7" }, "from" : "2310110", "to" : "2310500", "distance" : 620 }
{ "_id" : { "$oid" : "54db521344ae2c187f8403f8" }, "from" : "2310500", "to" : "2310199", "distance" : 865 }
{ "_id" : { "$oid" : "54db521344ae2c187f8403f9" }, "from" : "2310199", "to" : "2310280", "distance" : 489 }
{ "_id" : { "$oid" : "54db521444ae2c187f8403fa" }, "from" : "2310280", "to" : "2310290", "distance" : 642 }
{ "_id" : { "$oid" : "54db521444ae2c187f8403fb" }, "from" : "2310290", "to" : "2310301", "distance" : 545 }
{ "_id" : { "$oid" : "54db521544ae2c187f8403fc" }, "from" : "3010012", "to" : "3010617", "distance" : 524 }
{ "_id" : { "$oid" : "54db521544ae2c187f8403fd" }, "from" : "3010617", "to" : "3010625", "distance" : 617 }
{ "_id" : { "$oid" : "54db521644ae2c187f8403fe" }, "from" : "3010625", "to" : "3010620", "distance" : 244 }
{ "_id" : { "$oid" : "54db521644ae2c187f8403ff" }, "from" : "3010620", "to" : "3010622", "distance" : 121 }
{ "_id" : { "$oid" : "54db521644ae2c187f840400" }, "from" : "3010622", "to" : "3010652", "distance" : 553 }
{ "_id" : { "$oid" : "54db521744ae2c187f840401" }, "from" : "3010652", "to" : "3010650", "distance" : 649 }
{ "_id" : { "$oid" : "54db521744ae2c187f840402" }, "from" : "3010650", "to" : "3010656", "distance" : 479 }
{ "_id" : { "$oid" : "54db521844ae2c187f840403" }, "from" : "3010656", "to" : "3011216", "distance" : 664 }
{ "_id" : { "$oid" : "54db521844ae2c187f840404" }, "from" : "3011216", "to" : "3011215", "distance" : 495 }
{ "_id" : { "$oid" : "54db521844ae2c187f840405" }, "from" : "3011215", "to" : "3011204", "distance" : 317 }
{ "_id" : { "$oid" : "54db521944ae2c187f840406" }, "from" : "3011204", "to" : "3011203", "distance" : 248 }
{ "_id" : { "$oid" : "54db521944ae2c187f840407" }, "from" : "3011203", "to" : "3011205", "distance" : 235 }
{ "_id" : { "$oid" : "54db521944ae2c187f840408" }, "from" : "3011205", "to" : "3011206", "distance" : 437 }
{ "_id" : { "$oid" : "54db521a44ae2c187f840409" }, "from" : "3011206", "to" : "3011233", "distance" : 429 }
{ "_id" : { "$oid" : "54db521a44ae2c187f84040a" }, "from" : "3011233", "to" : "3011232", "distance" : 463 }
{ "_id" : { "$oid" : "54db521b44ae2c187f84040b" }, "from" : "3011232", "to" : "3011230", "distance" : 700 }
{ "_id" : { "$oid" : "54db521b44ae2c187f84040c" }, "from" : "3011230", "to" : "3011236", "distance" : 450 }
{ "_id" : { "$oid" : "54db521b44ae2c187f84040d" }, "from" : "3011236", "to" : "3011237", "distance" : 287 }
{ "_id" : { "$oid" : "54db521c44ae2c187f84040e" }, "from" : "3011237", "to" : "3011144", "distance" : 272 }
{ "_id" : { "$oid" : "54db521c44ae2c187f84040f" }, "from" : "3011144", "to" : "3011143", "distance" : 324 }
{ "_id" : { "$oid" : "54db521d44ae2c187f840410" }, "from" : "3011143", "to" : "3011141", "distance" : 569 }
{ "_id" : { "$oid" : "54db521d44ae2c187f840411" }, "from" : "3011141", "to" : "3011145", "distance" : 622 }
{ "_id" : { "$oid" : "54db521d44ae2c187f840412" }, "from" : "3011145", "to" : "3011146", "distance" : 4791 }
{ "_id" : { "$oid" : "54db521e44ae2c187f840413" }, "from" : "3011146", "to" : "3010961", "distance" : 1847 }
{ "_id" : { "$oid" : "54db521e44ae2c187f840414" }, "from" : "3010961", "to" : "3010952", "distance" : 180 }
{ "_id" : { "$oid" : "54db521f44ae2c187f840415" }, "from" : "3010952", "to" : "3010953", "distance" : 485 }
{ "_id" : { "$oid" : "54db521f44ae2c187f840416" }, "from" : "3010953", "to" : "3010954", "distance" : 336 }
{ "_id" : { "$oid" : "54db521f44ae2c187f840417" }, "from" : "3010954", "to" : "3010955", "distance" : 279 }
{ "_id" : { "$oid" : "54db522044ae2c187f840418" }, "from" : "3010955", "to" : "3010970", "distance" : 767 }
{ "_id" : { "$oid" : "54db522044ae2c187f840419" }, "from" : "3010970", "to" : "3010977", "distance" : 340 }
{ "_id" : { "$oid" : "54db522144ae2c187f84041a" }, "from" : "3010977", "to" : "3010972", "distance" : 454 }
{ "_id" : { "$oid" : "54db522144ae2c187f84041b" }, "from" : "3010972", "to" : "3010973", "distance" : 523 }
{ "_id" : { "$oid" : "54db522144ae2c187f84041c" }, "from" : "3010973", "to" : "3010974", "distance" : 221 }
{ "_id" : { "$oid" : "54db522244ae2c187f84041d" }, "from" : "3010974", "to" : "3010975", "distance" : 434 }
{ "_id" : { "$oid" : "54db522244ae2c187f84041e" }, "from" : "3012389", "to" : "3012628", "distance" : 2240 }
{ "_id" : { "$oid" : "54db522344ae2c187f84041f" }, "from" : "2330220", "to" : "2330218", "distance" : 168 }
{ "_id" : { "$oid" : "54db522344ae2c187f840420" }, "from" : "2330218", "to" : "2330216", "distance" : 357 }
{ "_id" : { "$oid" : "54db522444ae2c187f840421" }, "from" : "2330216", "to" : "2330215", "distance" : 240 }
{ "_id" : { "$oid" : "54db522444ae2c187f840422" }, "from" : "2330215", "to" : "2330214", "distance" : 378 }
{ "_id" : { "$oid" : "54db522444ae2c187f840423" }, "from" : "2330214", "to" : "2330305", "distance" : 1243 }
{ "_id" : { "$oid" : "54db522544ae2c187f840424" }, "from" : "2330305", "to" : "2330300", "distance" : 439 }
{ "_id" : { "$oid" : "54db522544ae2c187f840425" }, "from" : "2330300", "to" : "2330305", "distance" : 438 }
{ "_id" : { "$oid" : "54db522644ae2c187f840426" }, "from" : "2330305", "to" : "2330212", "distance" : 577 }
{ "_id" : { "$oid" : "54db522644ae2c187f840427" }, "from" : "2330212", "to" : "2330210", "distance" : 917 }
{ "_id" : { "$oid" : "54db522644ae2c187f840428" }, "from" : "2330210", "to" : "2330208", "distance" : 540 }
{ "_id" : { "$oid" : "54db522744ae2c187f840429" }, "from" : "2330208", "to" : "2330205", "distance" : 535 }
{ "_id" : { "$oid" : "54db522744ae2c187f84042a" }, "from" : "2330205", "to" : "2330202", "distance" : 503 }
{ "_id" : { "$oid" : "54db522744ae2c187f84042b" }, "from" : "2330202", "to" : "2330150", "distance" : 1366 }
{ "_id" : { "$oid" : "54db522844ae2c187f84042c" }, "from" : "2330150", "to" : "2330148", "distance" : 1476 }
{ "_id" : { "$oid" : "54db522844ae2c187f84042d" }, "from" : "2330148", "to" : "2330146", "distance" : 831 }
{ "_id" : { "$oid" : "54db522944ae2c187f84042e" }, "from" : "2330146", "to" : "2330144", "distance" : 1038 }
{ "_id" : { "$oid" : "54db522944ae2c187f84042f" }, "from" : "2330144", "to" : "2330142", "distance" : 764 }
{ "_id" : { "$oid" : "54db522944ae2c187f840430" }, "from" : "2330142", "to" : "2330140", "distance" : 741 }
{ "_id" : { "$oid" : "54db522a44ae2c187f840431" }, "from" : "2330140", "to" : "2330138", "distance" : 640 }
{ "_id" : { "$oid" : "54db522a44ae2c187f840432" }, "from" : "2330138", "to" : "2330136", "distance" : 625 }
{ "_id" : { "$oid" : "54db522a44ae2c187f840433" }, "from" : "2330136", "to" : "2330135", "distance" : 558 }
{ "_id" : { "$oid" : "54db522b44ae2c187f840434" }, "from" : "2330135", "to" : "2330134", "distance" : 639 }
{ "_id" : { "$oid" : "54db522b44ae2c187f840435" }, "from" : "2330134", "to" : "2330130", "distance" : 4898 }
{ "_id" : { "$oid" : "54db522c44ae2c187f840436" }, "from" : "2330130", "to" : "2330128", "distance" : 618 }
{ "_id" : { "$oid" : "54db522c44ae2c187f840437" }, "from" : "2330128", "to" : "2330125", "distance" : 561 }
{ "_id" : { "$oid" : "54db522c44ae2c187f840438" }, "from" : "2330125", "to" : "2330122", "distance" : 484 }
{ "_id" : { "$oid" : "54db522d44ae2c187f840439" }, "from" : "2330122", "to" : "2330120", "distance" : 690 }
{ "_id" : { "$oid" : "54db522d44ae2c187f84043a" }, "from" : "2330120", "to" : "2330118", "distance" : 607 }
{ "_id" : { "$oid" : "54db522d44ae2c187f84043b" }, "from" : "2330118", "to" : "2330110", "distance" : 898 }
{ "_id" : { "$oid" : "54db522e44ae2c187f84043c" }, "from" : "2330110", "to" : "2330105", "distance" : 380 }
{ "_id" : { "$oid" : "54db522e44ae2c187f84043d" }, "from" : "2330105", "to" : "2330117", "distance" : 1031 }
{ "_id" : { "$oid" : "54db522f44ae2c187f84043e" }, "from" : "2330117", "to" : "2330010", "distance" : 456 }
{ "_id" : { "$oid" : "54db522f44ae2c187f84043f" }, "from" : "2330010", "to" : "3011745", "distance" : 1173 }
{ "_id" : { "$oid" : "54db522f44ae2c187f840440" }, "from" : "3011745", "to" : "3011744", "distance" : 495 }
{ "_id" : { "$oid" : "54db523044ae2c187f840441" }, "from" : "3011744", "to" : "3011743", "distance" : 436 }
{ "_id" : { "$oid" : "54db523044ae2c187f840442" }, "from" : "3011743", "to" : "3011741", "distance" : 557 }
{ "_id" : { "$oid" : "54db523144ae2c187f840443" }, "from" : "3011741", "to" : "3011716", "distance" : 1677 }
{ "_id" : { "$oid" : "54db523144ae2c187f840444" }, "from" : "3011716", "to" : "3011717", "distance" : 421 }
{ "_id" : { "$oid" : "54db523144ae2c187f840445" }, "from" : "3011717", "to" : "3011942", "distance" : 614 }
{ "_id" : { "$oid" : "54db523244ae2c187f840446" }, "from" : "3011942", "to" : "3011932", "distance" : 651 }
{ "_id" : { "$oid" : "54db523244ae2c187f840447" }, "from" : "3011932", "to" : "3011921", "distance" : 1219 }
{ "_id" : { "$oid" : "54db523344ae2c187f840448" }, "from" : "3011921", "to" : "3011914", "distance" : 2221 }
{ "_id" : { "$oid" : "54db523344ae2c187f840449" }, "from" : "3011914", "to" : "3012041", "distance" : 657 }
{ "_id" : { "$oid" : "54db523344ae2c187f84044a" }, "from" : "3012041", "to" : "3012044", "distance" : 622 }
{ "_id" : { "$oid" : "54db523444ae2c187f84044b" }, "from" : "3012044", "to" : "3012046", "distance" : 575 }
{ "_id" : { "$oid" : "54db523444ae2c187f84044c" }, "from" : "3012046", "to" : "3012064", "distance" : 625 }
{ "_id" : { "$oid" : "54db523444ae2c187f84044d" }, "from" : "3012064", "to" : "3012060", "distance" : 525 }
{ "_id" : { "$oid" : "54db523544ae2c187f84044e" }, "from" : "3012060", "to" : "3012080", "distance" : 679 }
{ "_id" : { "$oid" : "54db523544ae2c187f84044f" }, "from" : "3012080", "to" : "3012104", "distance" : 734 }
{ "_id" : { "$oid" : "54db523644ae2c187f840450" }, "from" : "3012104", "to" : "3012101", "distance" : 1195 }
{ "_id" : { "$oid" : "54db523644ae2c187f840451" }, "from" : "3012101", "to" : "3011405", "distance" : 760 }
{ "_id" : { "$oid" : "54db523644ae2c187f840452" }, "from" : "3011405", "to" : "3011401", "distance" : 653 }
{ "_id" : { "$oid" : "54db523744ae2c187f840453" }, "from" : "3011401", "to" : "3014619", "distance" : 4103 }
{ "_id" : { "$oid" : "54db523744ae2c187f840454" }, "from" : "2310301", "to" : "2310321", "distance" : 644 }
{ "_id" : { "$oid" : "54db523844ae2c187f840455" }, "from" : "2310321", "to" : "2310322", "distance" : 290 }
{ "_id" : { "$oid" : "54db523844ae2c187f840456" }, "from" : "2310322", "to" : "2310324", "distance" : 663 }
{ "_id" : { "$oid" : "54db523844ae2c187f840457" }, "from" : "2310324", "to" : "2310325", "distance" : 308 }
{ "_id" : { "$oid" : "54db523944ae2c187f840458" }, "from" : "2310325", "to" : "2270510", "distance" : 2498 }
{ "_id" : { "$oid" : "54db523944ae2c187f840459" }, "from" : "2270510", "to" : "2270641", "distance" : 1669 }
{ "_id" : { "$oid" : "54db523a44ae2c187f84045a" }, "from" : "2270641", "to" : "2270109", "distance" : 783 }
{ "_id" : { "$oid" : "54db523a44ae2c187f84045b" }, "from" : "2270109", "to" : "2270104", "distance" : 534 }
{ "_id" : { "$oid" : "54db523a44ae2c187f84045c" }, "from" : "2270104", "to" : "2270102", "distance" : 753 }
{ "_id" : { "$oid" : "54db523b44ae2c187f84045d" }, "from" : "2270102", "to" : "2270120", "distance" : 944 }
{ "_id" : { "$oid" : "54db523b44ae2c187f84045e" }, "from" : "2270120", "to" : "2270022", "distance" : 209 }
{ "_id" : { "$oid" : "54db523c44ae2c187f84045f" }, "from" : "2270022", "to" : "2270204", "distance" : 528 }
{ "_id" : { "$oid" : "54db523c44ae2c187f840460" }, "from" : "2270204", "to" : "2270202", "distance" : 358 }
{ "_id" : { "$oid" : "54db523c44ae2c187f840461" }, "from" : "2270202", "to" : "2270200", "distance" : 563 }
{ "_id" : { "$oid" : "54db523d44ae2c187f840462" }, "from" : "2270200", "to" : "2270420", "distance" : 2952 }
{ "_id" : { "$oid" : "54db523d44ae2c187f840463" }, "from" : "2270420", "to" : "2270444", "distance" : 1160 }
{ "_id" : { "$oid" : "54db523d44ae2c187f840464" }, "from" : "2270444", "to" : "2270442", "distance" : 508 }
{ "_id" : { "$oid" : "54db523e44ae2c187f840465" }, "from" : "2270442", "to" : "2270440", "distance" : 726 }
{ "_id" : { "$oid" : "54db523e44ae2c187f840466" }, "from" : "2270440", "to" : "2270438", "distance" : 328 }
{ "_id" : { "$oid" : "54db523f44ae2c187f840467" }, "from" : "2270438", "to" : "2270434", "distance" : 956 }
{ "_id" : { "$oid" : "54db523f44ae2c187f840468" }, "from" : "2270434", "to" : "2270432", "distance" : 456 }
{ "_id" : { "$oid" : "54db523f44ae2c187f840469" }, "from" : "2270432", "to" : "2270220", "distance" : 1043 }
{ "_id" : { "$oid" : "54db524044ae2c187f84046a" }, "from" : "2270220", "to" : "2270235", "distance" : 876 }
{ "_id" : { "$oid" : "54db524044ae2c187f84046b" }, "from" : "2270235", "to" : "2270230", "distance" : 1142 }
{ "_id" : { "$oid" : "54db524044ae2c187f84046c" }, "from" : "2270230", "to" : "2270232", "distance" : 881 }
{ "_id" : { "$oid" : "54db524144ae2c187f84046d" }, "from" : "2270232", "to" : "2270240", "distance" : 1439 }
{ "_id" : { "$oid" : "54db524144ae2c187f84046e" }, "from" : "2270240", "to" : "2270888", "distance" : 2455 }
{ "_id" : { "$oid" : "54db524244ae2c187f84046f" }, "from" : "2270888", "to" : "2210591", "distance" : 2440 }
{ "_id" : { "$oid" : "54db524244ae2c187f840470" }, "from" : "2210591", "to" : "2210592", "distance" : 1372 }
{ "_id" : { "$oid" : "54db524244ae2c187f840471" }, "from" : "2210592", "to" : "2210594", "distance" : 1186 }
{ "_id" : { "$oid" : "54db524344ae2c187f840472" }, "from" : "2210594", "to" : "2210599", "distance" : 724 }
{ "_id" : { "$oid" : "54db524344ae2c187f840473" }, "from" : "2210599", "to" : "2210598", "distance" : 1100 }
{ "_id" : { "$oid" : "54db524344ae2c187f840474" }, "from" : "2210598", "to" : "2210597", "distance" : 668 }
{ "_id" : { "$oid" : "54db524444ae2c187f840475" }, "from" : "2210597", "to" : "2210596", "distance" : 537 }
{ "_id" : { "$oid" : "54db524444ae2c187f840476" }, "from" : "2210596", "to" : "2210595", "distance" : 434 }
{ "_id" : { "$oid" : "54db524544ae2c187f840477" }, "from" : "2210595", "to" : "2210613", "distance" : 463 }
{ "_id" : { "$oid" : "54db524544ae2c187f840478" }, "from" : "2210613", "to" : "2210611", "distance" : 359 }
{ "_id" : { "$oid" : "54db524544ae2c187f840479" }, "from" : "2210611", "to" : "2210608", "distance" : 1554 }
{ "_id" : { "$oid" : "54db524644ae2c187f84047a" }, "from" : "2210608", "to" : "2210607", "distance" : 843 }
{ "_id" : { "$oid" : "54db524644ae2c187f84047b" }, "from" : "2210607", "to" : "2210601", "distance" : 453 }
{ "_id" : { "$oid" : "54db524744ae2c187f84047c" }, "from" : "2210601", "to" : "2210600", "distance" : 1289 }
{ "_id" : { "$oid" : "54db524744ae2c187f84047d" }, "from" : "2210600", "to" : "2210606", "distance" : 518 }
{ "_id" : { "$oid" : "54db524744ae2c187f84047e" }, "from" : "2210606", "to" : "2210615", "distance" : 497 }
{ "_id" : { "$oid" : "54db524844ae2c187f84047f" }, "from" : "2210615", "to" : "2210617", "distance" : 1217 }
{ "_id" : { "$oid" : "54db524844ae2c187f840480" }, "from" : "2210617", "to" : "2210010", "distance" : 857 }
{ "_id" : { "$oid" : "54db524844ae2c187f840481" }, "from" : "2210010", "to" : "2210018", "distance" : 1635 }
{ "_id" : { "$oid" : "54db524944ae2c187f840482" }, "from" : "2210018", "to" : "2210019", "distance" : 1484 }
{ "_id" : { "$oid" : "54db524944ae2c187f840483" }, "from" : "2210019", "to" : "2210240", "distance" : 2174 }
{ "_id" : { "$oid" : "54db524a44ae2c187f840484" }, "from" : "2210240", "to" : "2210524", "distance" : 3111 }
{ "_id" : { "$oid" : "54db524a44ae2c187f840485" }, "from" : "2210524", "to" : "2210525", "distance" : 659 }
{ "_id" : { "$oid" : "54db524a44ae2c187f840486" }, "from" : "2210525", "to" : "2210519", "distance" : 555 }
{ "_id" : { "$oid" : "54db524b44ae2c187f840487" }, "from" : "2210519", "to" : "2210500", "distance" : 1315 }
{ "_id" : { "$oid" : "54db524b44ae2c187f840488" }, "from" : "3011547", "to" : "3011546", "distance" : 34 }
{ "_id" : { "$oid" : "54db524c44ae2c187f840489" }, "from" : "3011546", "to" : "3011545", "distance" : 356 }
{ "_id" : { "$oid" : "54db524c44ae2c187f84048a" }, "from" : "3011545", "to" : "3011544", "distance" : 268 }
{ "_id" : { "$oid" : "54db524c44ae2c187f84048b" }, "from" : "3011544", "to" : "3011543", "distance" : 342 }
{ "_id" : { "$oid" : "54db524d44ae2c187f84048c" }, "from" : "3011543", "to" : "3011542", "distance" : 2321 }
{ "_id" : { "$oid" : "54db524d44ae2c187f84048d" }, "from" : "3011542", "to" : "3011531", "distance" : 490 }
{ "_id" : { "$oid" : "54db524e44ae2c187f84048e" }, "from" : "3011531", "to" : "3011533", "distance" : 421 }
{ "_id" : { "$oid" : "54db524e44ae2c187f84048f" }, "from" : "3011533", "to" : "3011534", "distance" : 2006 }
{ "_id" : { "$oid" : "54db524e44ae2c187f840490" }, "from" : "3011534", "to" : "3011561", "distance" : 238 }
{ "_id" : { "$oid" : "54db524f44ae2c187f840491" }, "from" : "3011561", "to" : "3011562", "distance" : 450 }
{ "_id" : { "$oid" : "54db524f44ae2c187f840492" }, "from" : "3011562", "to" : "3011563", "distance" : 277 }
{ "_id" : { "$oid" : "54db524f44ae2c187f840493" }, "from" : "3011563", "to" : "3011564", "distance" : 305 }
{ "_id" : { "$oid" : "54db525044ae2c187f840494" }, "from" : "3011564", "to" : "3011566", "distance" : 494 }
{ "_id" : { "$oid" : "54db525044ae2c187f840495" }, "from" : "3011566", "to" : "3011563", "distance" : 272 }
{ "_id" : { "$oid" : "54db525144ae2c187f840496" }, "from" : "3011563", "to" : "3011567", "distance" : 491 }
{ "_id" : { "$oid" : "54db525144ae2c187f840497" }, "from" : "3011567", "to" : "3011561", "distance" : 488 }
{ "_id" : { "$oid" : "54db525144ae2c187f840498" }, "from" : "3011561", "to" : "3011527", "distance" : 359 }
{ "_id" : { "$oid" : "54db525244ae2c187f840499" }, "from" : "3011527", "to" : "3011526", "distance" : 351 }
{ "_id" : { "$oid" : "54db525244ae2c187f84049a" }, "from" : "3011526", "to" : "3011522", "distance" : 1704 }
{ "_id" : { "$oid" : "54db525244ae2c187f84049b" }, "from" : "3011522", "to" : "3011521", "distance" : 607 }
{ "_id" : { "$oid" : "54db525344ae2c187f84049c" }, "from" : "3011941", "to" : "3011927", "distance" : 305 }
{ "_id" : { "$oid" : "54db525344ae2c187f84049d" }, "from" : "3011927", "to" : "3011926", "distance" : 713 }
{ "_id" : { "$oid" : "54db525444ae2c187f84049e" }, "from" : "3011926", "to" : "3011973", "distance" : 460 }
{ "_id" : { "$oid" : "54db525444ae2c187f84049f" }, "from" : "3011973", "to" : "3011971", "distance" : 223 }
{ "_id" : { "$oid" : "54db525544ae2c187f8404a0" }, "from" : "3011971", "to" : "3011627", "distance" : 291 }
{ "_id" : { "$oid" : "54db525544ae2c187f8404a1" }, "from" : "3011627", "to" : "3011626", "distance" : 495 }
{ "_id" : { "$oid" : "54db525544ae2c187f8404a2" }, "from" : "3011626", "to" : "3011624", "distance" : 473 }
{ "_id" : { "$oid" : "54db525644ae2c187f8404a3" }, "from" : "3011624", "to" : "3011623", "distance" : 373 }
{ "_id" : { "$oid" : "54db525644ae2c187f8404a4" }, "from" : "3011623", "to" : "3011621", "distance" : 971 }
{ "_id" : { "$oid" : "54db525644ae2c187f8404a5" }, "from" : "3011621", "to" : "3011616", "distance" : 638 }
{ "_id" : { "$oid" : "54db525744ae2c187f8404a6" }, "from" : "3011616", "to" : "3011614", "distance" : 530 }
{ "_id" : { "$oid" : "54db525744ae2c187f8404a7" }, "from" : "3011614", "to" : "3011611", "distance" : 443 }
{ "_id" : { "$oid" : "54db525844ae2c187f8404a8" }, "from" : "3011611", "to" : "3011612", "distance" : 3525 }
{ "_id" : { "$oid" : "54db525844ae2c187f8404a9" }, "from" : "3011612", "to" : "3011651", "distance" : 447 }
{ "_id" : { "$oid" : "54db525844ae2c187f8404aa" }, "from" : "3011651", "to" : "3011652", "distance" : 361 }
{ "_id" : { "$oid" : "54db525944ae2c187f8404ab" }, "from" : "3011652", "to" : "3011542", "distance" : 2377 }
{ "_id" : { "$oid" : "54db525944ae2c187f8404ac" }, "from" : "3011533", "to" : "3011525", "distance" : 369 }
{ "_id" : { "$oid" : "54db525a44ae2c187f8404ad" }, "from" : "3011525", "to" : "3011523", "distance" : 443 }
{ "_id" : { "$oid" : "54db525a44ae2c187f8404ae" }, "from" : "3011523", "to" : "3011554", "distance" : 373 }
{ "_id" : { "$oid" : "54db525a44ae2c187f8404af" }, "from" : "3011554", "to" : "3011551", "distance" : 749 }
{ "_id" : { "$oid" : "54db525b44ae2c187f8404b0" }, "from" : "3011551", "to" : "3011335", "distance" : 529 }
{ "_id" : { "$oid" : "54db525b44ae2c187f8404b1" }, "from" : "3011335", "to" : "3011336", "distance" : 327 }
{ "_id" : { "$oid" : "54db525b44ae2c187f8404b2" }, "from" : "3011336", "to" : "3011337", "distance" : 201 }
{ "_id" : { "$oid" : "54db525c44ae2c187f8404b3" }, "from" : "3011337", "to" : "3011115", "distance" : 1196 }
{ "_id" : { "$oid" : "54db525c44ae2c187f8404b4" }, "from" : "3011115", "to" : "3011116", "distance" : 454 }
{ "_id" : { "$oid" : "54db525d44ae2c187f8404b5" }, "from" : "3011116", "to" : "3011121", "distance" : 762 }
{ "_id" : { "$oid" : "54db525d44ae2c187f8404b6" }, "from" : "3011121", "to" : "3011127", "distance" : 433 }
{ "_id" : { "$oid" : "54db525d44ae2c187f8404b7" }, "from" : "3011127", "to" : "3011131", "distance" : 621 }
{ "_id" : { "$oid" : "54db525e44ae2c187f8404b8" }, "from" : "3011131", "to" : "3011136", "distance" : 651 }
{ "_id" : { "$oid" : "54db525e44ae2c187f8404b9" }, "from" : "3011136", "to" : "3011137", "distance" : 408 }
{ "_id" : { "$oid" : "54db525e44ae2c187f8404ba" }, "from" : "3011137", "to" : "3011141", "distance" : 443 }
{ "_id" : { "$oid" : "54db525f44ae2c187f8404bb" }, "from" : "3011141", "to" : "3011143", "distance" : 458 }
{ "_id" : { "$oid" : "54db525f44ae2c187f8404bc" }, "from" : "3011143", "to" : "3011237", "distance" : 596 }
{ "_id" : { "$oid" : "54db526044ae2c187f8404bd" }, "from" : "3011237", "to" : "3011236", "distance" : 287 }
{ "_id" : { "$oid" : "54db526044ae2c187f8404be" }, "from" : "3011236", "to" : "3011230", "distance" : 450 }
{ "_id" : { "$oid" : "54db526044ae2c187f8404bf" }, "from" : "3011230", "to" : "3011013", "distance" : 835 }
{ "_id" : { "$oid" : "54db526144ae2c187f8404c0" }, "from" : "3011013", "to" : "3011012", "distance" : 420 }
{ "_id" : { "$oid" : "54db526144ae2c187f8404c1" }, "from" : "3011012", "to" : "3011021", "distance" : 529 }
{ "_id" : { "$oid" : "54db526244ae2c187f8404c2" }, "from" : "3011021", "to" : "3011025", "distance" : 325 }
{ "_id" : { "$oid" : "54db526244ae2c187f8404c3" }, "from" : "3011025", "to" : "3010863", "distance" : 499 }
{ "_id" : { "$oid" : "54db526244ae2c187f8404c4" }, "from" : "3010863", "to" : "3010862", "distance" : 288 }
{ "_id" : { "$oid" : "54db526344ae2c187f8404c5" }, "from" : "3010862", "to" : "3010861", "distance" : 444 }
{ "_id" : { "$oid" : "54db526344ae2c187f8404c6" }, "from" : "3010861", "to" : "3010876", "distance" : 478 }
{ "_id" : { "$oid" : "54db526344ae2c187f8404c7" }, "from" : "3010876", "to" : "3010871", "distance" : 478 }
{ "_id" : { "$oid" : "54db526444ae2c187f8404c8" }, "from" : "3010871", "to" : "3010872", "distance" : 504 }
{ "_id" : { "$oid" : "54db526444ae2c187f8404c9" }, "from" : "3010872", "to" : "3010915", "distance" : 353 }
{ "_id" : { "$oid" : "54db526544ae2c187f8404ca" }, "from" : "3010915", "to" : "3010911", "distance" : 416 }
{ "_id" : { "$oid" : "54db526544ae2c187f8404cb" }, "from" : "3010911", "to" : "3010912", "distance" : 237 }
{ "_id" : { "$oid" : "54db526544ae2c187f8404cc" }, "from" : "3010912", "to" : "3010927", "distance" : 946 }
{ "_id" : { "$oid" : "54db526644ae2c187f8404cd" }, "from" : "3010927", "to" : "3010926", "distance" : 180 }
{ "_id" : { "$oid" : "54db526644ae2c187f8404ce" }, "from" : "3010926", "to" : "3010921", "distance" : 828 }
{ "_id" : { "$oid" : "54db526744ae2c187f8404cf" }, "from" : "3012265", "to" : "3012266", "distance" : 426 }
{ "_id" : { "$oid" : "54db526844ae2c187f8404d0" }, "from" : "3012266", "to" : "3012214", "distance" : 604 }
{ "_id" : { "$oid" : "54db526844ae2c187f8404d1" }, "from" : "3012214", "to" : "3012213", "distance" : 328 }
{ "_id" : { "$oid" : "54db526844ae2c187f8404d2" }, "from" : "3012213", "to" : "3012212", "distance" : 1381 }
{ "_id" : { "$oid" : "54db526944ae2c187f8404d3" }, "from" : "3012212", "to" : "3010375", "distance" : 1747 }
{ "_id" : { "$oid" : "54db526944ae2c187f8404d4" }, "from" : "3010375", "to" : "3012211", "distance" : 841 }
{ "_id" : { "$oid" : "54db526a44ae2c187f8404d5" }, "from" : "3012211", "to" : "3010373", "distance" : 477 }
{ "_id" : { "$oid" : "54db526a44ae2c187f8404d6" }, "from" : "3010373", "to" : "3010350", "distance" : 516 }
{ "_id" : { "$oid" : "54db526a44ae2c187f8404d7" }, "from" : "3010350", "to" : "3010352", "distance" : 285 }
{ "_id" : { "$oid" : "54db526b44ae2c187f8404d8" }, "from" : "3010352", "to" : "3010341", "distance" : 219 }
{ "_id" : { "$oid" : "54db526b44ae2c187f8404d9" }, "from" : "3010341", "to" : "3010314", "distance" : 716 }
{ "_id" : { "$oid" : "54db526c44ae2c187f8404da" }, "from" : "3010314", "to" : "3010313", "distance" : 861 }
{ "_id" : { "$oid" : "54db526c44ae2c187f8404db" }, "from" : "3010313", "to" : "3010312", "distance" : 418 }
{ "_id" : { "$oid" : "54db526c44ae2c187f8404dc" }, "from" : "3010312", "to" : "3010306", "distance" : 277 }
{ "_id" : { "$oid" : "54db526d44ae2c187f8404dd" }, "from" : "3010306", "to" : "3010211", "distance" : 333 }
{ "_id" : { "$oid" : "54db526d44ae2c187f8404de" }, "from" : "3010211", "to" : "3010057", "distance" : 353 }
{ "_id" : { "$oid" : "54db526d44ae2c187f8404df" }, "from" : "3010057", "to" : "3010055", "distance" : 852 }
{ "_id" : { "$oid" : "54db526e44ae2c187f8404e0" }, "from" : "3010055", "to" : "3010052", "distance" : 332 }
{ "_id" : { "$oid" : "54db526e44ae2c187f8404e1" }, "from" : "3010052", "to" : "3010050", "distance" : 295 }
{ "_id" : { "$oid" : "54db526f44ae2c187f8404e2" }, "from" : "3010050", "to" : "3010012", "distance" : 378 }
{ "_id" : { "$oid" : "54db526f44ae2c187f8404e3" }, "from" : "2310301", "to" : "2280411", "distance" : 3508 }
{ "_id" : { "$oid" : "54db527044ae2c187f8404e4" }, "from" : "2280411", "to" : "2280412", "distance" : 757 }
{ "_id" : { "$oid" : "54db527044ae2c187f8404e5" }, "from" : "2280412", "to" : "2310413", "distance" : 495 }
{ "_id" : { "$oid" : "54db527044ae2c187f8404e6" }, "from" : "2310413", "to" : "2310414", "distance" : 294 }
{ "_id" : { "$oid" : "54db527144ae2c187f8404e7" }, "from" : "2310414", "to" : "2310415", "distance" : 195 }
{ "_id" : { "$oid" : "54db527144ae2c187f8404e8" }, "from" : "2310415", "to" : "2310416", "distance" : 187 }
{ "_id" : { "$oid" : "54db527244ae2c187f8404e9" }, "from" : "2310416", "to" : "2280417", "distance" : 440 }
{ "_id" : { "$oid" : "54db527244ae2c187f8404ea" }, "from" : "2280417", "to" : "2280418", "distance" : 366 }
{ "_id" : { "$oid" : "54db527244ae2c187f8404eb" }, "from" : "2280418", "to" : "2280419", "distance" : 210 }
{ "_id" : { "$oid" : "54db527344ae2c187f8404ec" }, "from" : "2280419", "to" : "2280420", "distance" : 471 }
{ "_id" : { "$oid" : "54db527344ae2c187f8404ed" }, "from" : "2280420", "to" : "2280421", "distance" : 412 }
{ "_id" : { "$oid" : "54db527344ae2c187f8404ee" }, "from" : "2280421", "to" : "2280422", "distance" : 441 }
{ "_id" : { "$oid" : "54db527444ae2c187f8404ef" }, "from" : "2280422", "to" : "2280424", "distance" : 444 }
{ "_id" : { "$oid" : "54db527444ae2c187f8404f0" }, "from" : "2280424", "to" : "2280425", "distance" : 1057 }
{ "_id" : { "$oid" : "54db527544ae2c187f8404f1" }, "from" : "2280425", "to" : "2280424", "distance" : 966 }
{ "_id" : { "$oid" : "54db527544ae2c187f8404f2" }, "from" : "2280424", "to" : "2280422", "distance" : 427 }
{ "_id" : { "$oid" : "54db527544ae2c187f8404f3" }, "from" : "2280422", "to" : "2280426", "distance" : 383 }
{ "_id" : { "$oid" : "54db527644ae2c187f8404f4" }, "from" : "2280426", "to" : "2280427", "distance" : 341 }
{ "_id" : { "$oid" : "54db527644ae2c187f8404f5" }, "from" : "2280427", "to" : "2310099", "distance" : 401 }
{ "_id" : { "$oid" : "54db527644ae2c187f8404f6" }, "from" : "2310099", "to" : "2310080", "distance" : 616 }
{ "_id" : { "$oid" : "54db527744ae2c187f8404f7" }, "from" : "2310080", "to" : "2310070", "distance" : 390 }
{ "_id" : { "$oid" : "54db527744ae2c187f8404f8" }, "from" : "2310070", "to" : "2300325", "distance" : 454 }
{ "_id" : { "$oid" : "54db527844ae2c187f8404f9" }, "from" : "2300325", "to" : "2300317", "distance" : 545 }
{ "_id" : { "$oid" : "54db527844ae2c187f8404fa" }, "from" : "2300317", "to" : "2300060", "distance" : 328 }
{ "_id" : { "$oid" : "54db527844ae2c187f8404fb" }, "from" : "2300060", "to" : "2300429", "distance" : 532 }
{ "_id" : { "$oid" : "54db527944ae2c187f8404fc" }, "from" : "2300429", "to" : "2300430", "distance" : 389 }
{ "_id" : { "$oid" : "54db527944ae2c187f8404fd" }, "from" : "2300430", "to" : "2300431", "distance" : 211 }
{ "_id" : { "$oid" : "54db527a44ae2c187f8404fe" }, "from" : "2300431", "to" : "2300432", "distance" : 372 }
{ "_id" : { "$oid" : "54db527a44ae2c187f8404ff" }, "from" : "2300432", "to" : "2300433", "distance" : 475 }
{ "_id" : { "$oid" : "54db527a44ae2c187f840500" }, "from" : "2300433", "to" : "2300046", "distance" : 461 }
{ "_id" : { "$oid" : "54db527b44ae2c187f840501" }, "from" : "2300046", "to" : "2300267", "distance" : 168 }
{ "_id" : { "$oid" : "54db527b44ae2c187f840502" }, "from" : "2300267", "to" : "2300047", "distance" : 360 }
{ "_id" : { "$oid" : "54db527b44ae2c187f840503" }, "from" : "2300047", "to" : "2300048", "distance" : 372 }
{ "_id" : { "$oid" : "54db527c44ae2c187f840504" }, "from" : "2300048", "to" : "2300040", "distance" : 476 }
{ "_id" : { "$oid" : "54db527c44ae2c187f840505" }, "from" : "2300040", "to" : "2300030", "distance" : 372 }
{ "_id" : { "$oid" : "54db527d44ae2c187f840506" }, "from" : "2300030", "to" : "2300494", "distance" : 498 }
{ "_id" : { "$oid" : "54db527d44ae2c187f840507" }, "from" : "2300494", "to" : "2300438", "distance" : 339 }
{ "_id" : { "$oid" : "54db527d44ae2c187f840508" }, "from" : "2300438", "to" : "2300439", "distance" : 1258 }
{ "_id" : { "$oid" : "54db527e44ae2c187f840509" }, "from" : "2300439", "to" : "2300290", "distance" : 2267 }
{ "_id" : { "$oid" : "54db527e44ae2c187f84050a" }, "from" : "2300290", "to" : "2300295", "distance" : 664 }
{ "_id" : { "$oid" : "54db527e44ae2c187f84050b" }, "from" : "2300295", "to" : "2300443", "distance" : 1235 }
{ "_id" : { "$oid" : "54db527f44ae2c187f84050c" }, "from" : "2300443", "to" : "2300444", "distance" : 501 }
{ "_id" : { "$oid" : "54db527f44ae2c187f84050d" }, "from" : "2300444", "to" : "2300445", "distance" : 332 }
{ "_id" : { "$oid" : "54db528044ae2c187f84050e" }, "from" : "2300445", "to" : "2300446", "distance" : 257 }
{ "_id" : { "$oid" : "54db528044ae2c187f84050f" }, "from" : "2300446", "to" : "2300447", "distance" : 547 }
{ "_id" : { "$oid" : "54db528044ae2c187f840510" }, "from" : "2300447", "to" : "2300500", "distance" : 270 }
{ "_id" : { "$oid" : "54db528144ae2c187f840511" }, "from" : "2300500", "to" : "3011635", "distance" : 566 }
{ "_id" : { "$oid" : "54db528144ae2c187f840512" }, "from" : "3011635", "to" : "3011665", "distance" : 765 }
{ "_id" : { "$oid" : "54db528244ae2c187f840513" }, "from" : "3011665", "to" : "3011616", "distance" : 1502 }
{ "_id" : { "$oid" : "54db528244ae2c187f840514" }, "from" : "3011616", "to" : "3011659", "distance" : 2029 }
{ "_id" : { "$oid" : "54db528244ae2c187f840515" }, "from" : "3011659", "to" : "3011472", "distance" : 2958 }
{ "_id" : { "$oid" : "54db528344ae2c187f840516" }, "from" : "3011472", "to" : "3011459", "distance" : 296 }
{ "_id" : { "$oid" : "54db528344ae2c187f840517" }, "from" : "3011459", "to" : "3011439", "distance" : 850 }
{ "_id" : { "$oid" : "54db528444ae2c187f840518" }, "from" : "3011439", "to" : "3010643", "distance" : 607 }
{ "_id" : { "$oid" : "54db528444ae2c187f840519" }, "from" : "3010641", "to" : "3010627", "distance" : 3379 }
{ "_id" : { "$oid" : "54db528444ae2c187f84051a" }, "from" : "3010627", "to" : "3010624", "distance" : 205 }
{ "_id" : { "$oid" : "54db528544ae2c187f84051b" }, "from" : "3010624", "to" : "3010619", "distance" : 671 }
{ "_id" : { "$oid" : "54db528544ae2c187f84051c" }, "from" : "3012451", "to" : "3012456", "distance" : 366 }
{ "_id" : { "$oid" : "54db528644ae2c187f84051d" }, "from" : "3012456", "to" : "3012467", "distance" : 545 }
{ "_id" : { "$oid" : "54db528644ae2c187f84051e" }, "from" : "3012467", "to" : "3012466", "distance" : 380 }
{ "_id" : { "$oid" : "54db528744ae2c187f84051f" }, "from" : "3012466", "to" : "3012476", "distance" : 463 }
{ "_id" : { "$oid" : "54db528744ae2c187f840520" }, "from" : "3012476", "to" : "3012610", "distance" : 899 }
{ "_id" : { "$oid" : "54db528744ae2c187f840521" }, "from" : "3012610", "to" : "3012611", "distance" : 685 }
{ "_id" : { "$oid" : "54db528844ae2c187f840522" }, "from" : "3012611", "to" : "3012612", "distance" : 780 }
{ "_id" : { "$oid" : "54db528844ae2c187f840523" }, "from" : "3012612", "to" : "3012613", "distance" : 508 }
{ "_id" : { "$oid" : "54db528844ae2c187f840524" }, "from" : "3012613", "to" : "3012618", "distance" : 296 }
{ "_id" : { "$oid" : "54db528944ae2c187f840525" }, "from" : "3012618", "to" : "3012614", "distance" : 278 }
{ "_id" : { "$oid" : "54db528944ae2c187f840526" }, "from" : "3012614", "to" : "3012609", "distance" : 328 }
{ "_id" : { "$oid" : "54db528a44ae2c187f840527" }, "from" : "3012609", "to" : "3012615", "distance" : 230 }
{ "_id" : { "$oid" : "54db528a44ae2c187f840528" }, "from" : "3012615", "to" : "3012616", "distance" : 777 }
{ "_id" : { "$oid" : "54db528a44ae2c187f840529" }, "from" : "3012616", "to" : "3012617", "distance" : 1059 }
{ "_id" : { "$oid" : "54db528b44ae2c187f84052a" }, "from" : "3012617", "to" : "3012626", "distance" : 798 }
{ "_id" : { "$oid" : "54db528b44ae2c187f84052b" }, "from" : "3012626", "to" : "3012625", "distance" : 485 }
{ "_id" : { "$oid" : "54db528c44ae2c187f84052c" }, "from" : "3012625", "to" : "3012624", "distance" : 519 }
{ "_id" : { "$oid" : "54db528c44ae2c187f84052d" }, "from" : "3012624", "to" : "3012623", "distance" : 286 }
{ "_id" : { "$oid" : "54db528c44ae2c187f84052e" }, "from" : "3012623", "to" : "3012622", "distance" : 216 }
{ "_id" : { "$oid" : "54db528d44ae2c187f84052f" }, "from" : "3012622", "to" : "3012619", "distance" : 230 }
{ "_id" : { "$oid" : "54db528d44ae2c187f840530" }, "from" : "3012619", "to" : "3012621", "distance" : 306 }
{ "_id" : { "$oid" : "54db528d44ae2c187f840531" }, "from" : "3012621", "to" : "3012620", "distance" : 209 }
{ "_id" : { "$oid" : "54db528e44ae2c187f840532" }, "from" : "2150660", "to" : "2150708", "distance" : 835 }
{ "_id" : { "$oid" : "54db528e44ae2c187f840533" }, "from" : "2150708", "to" : "2150200", "distance" : 1889 }
{ "_id" : { "$oid" : "54db528f44ae2c187f840534" }, "from" : "2150200", "to" : "2150342", "distance" : 275 }
{ "_id" : { "$oid" : "54db528f44ae2c187f840535" }, "from" : "2150342", "to" : "2150345", "distance" : 206 }
{ "_id" : { "$oid" : "54db529044ae2c187f840536" }, "from" : "2150345", "to" : "2150348", "distance" : 1218 }
{ "_id" : { "$oid" : "54db529044ae2c187f840537" }, "from" : "2260101", "to" : "2260103", "distance" : 437 }
{ "_id" : { "$oid" : "54db529144ae2c187f840538" }, "from" : "2260103", "to" : "2260266", "distance" : 1159 }
{ "_id" : { "$oid" : "54db529144ae2c187f840539" }, "from" : "2260266", "to" : "2260265", "distance" : 348 }
{ "_id" : { "$oid" : "54db529144ae2c187f84053a" }, "from" : "2260265", "to" : "2260264", "distance" : 1018 }
{ "_id" : { "$oid" : "54db529244ae2c187f84053b" }, "from" : "2260264", "to" : "2260262", "distance" : 1109 }
{ "_id" : { "$oid" : "54db529244ae2c187f84053c" }, "from" : "2260262", "to" : "2260260", "distance" : 1136 }
{ "_id" : { "$oid" : "54db529244ae2c187f84053d" }, "from" : "2260260", "to" : "2260248", "distance" : 530 }
{ "_id" : { "$oid" : "54db529344ae2c187f84053e" }, "from" : "2260248", "to" : "2260250", "distance" : 2340 }
{ "_id" : { "$oid" : "54db529344ae2c187f84053f" }, "from" : "2260250", "to" : "2260270", "distance" : 1732 }
{ "_id" : { "$oid" : "54db529444ae2c187f840540" }, "from" : "2260270", "to" : "2260268", "distance" : 2443 }
{ "_id" : { "$oid" : "54db529444ae2c187f840541" }, "from" : "2260268", "to" : "2260225", "distance" : 793 }
{ "_id" : { "$oid" : "54db529444ae2c187f840542" }, "from" : "2260225", "to" : "2260220", "distance" : 1132 }
{ "_id" : { "$oid" : "54db529544ae2c187f840543" }, "from" : "2260220", "to" : "2260450", "distance" : 1332 }
{ "_id" : { "$oid" : "54db529544ae2c187f840544" }, "from" : "2260450", "to" : "2260452", "distance" : 978 }
{ "_id" : { "$oid" : "54db529644ae2c187f840545" }, "from" : "2260452", "to" : "2260260", "distance" : 627 }
{ "_id" : { "$oid" : "54db529644ae2c187f840546" }, "from" : "2260260", "to" : "2260262", "distance" : 1136 }
{ "_id" : { "$oid" : "54db529644ae2c187f840547" }, "from" : "2260262", "to" : "2260264", "distance" : 1109 }
{ "_id" : { "$oid" : "54db529744ae2c187f840548" }, "from" : "2260264", "to" : "2260265", "distance" : 1018 }
{ "_id" : { "$oid" : "54db529744ae2c187f840549" }, "from" : "2260265", "to" : "2260266", "distance" : 348 }
{ "_id" : { "$oid" : "54db529744ae2c187f84054a" }, "from" : "2260266", "to" : "2260103", "distance" : 1184 }
{ "_id" : { "$oid" : "54db529844ae2c187f84054b" }, "from" : "2260103", "to" : "2260101", "distance" : 437 }
{ "_id" : { "$oid" : "54db529844ae2c187f84054c" }, "from" : "2370230", "to" : "2370186", "distance" : 224 }
{ "_id" : { "$oid" : "54db529944ae2c187f84054d" }, "from" : "2370186", "to" : "2370182", "distance" : 625 }
{ "_id" : { "$oid" : "54db529944ae2c187f84054e" }, "from" : "2370182", "to" : "2370183", "distance" : 1070 }
{ "_id" : { "$oid" : "54db529a44ae2c187f84054f" }, "from" : "2370183", "to" : "2370181", "distance" : 734 }
{ "_id" : { "$oid" : "54db529a44ae2c187f840550" }, "from" : "2370181", "to" : "2370180", "distance" : 1418 }
{ "_id" : { "$oid" : "54db529a44ae2c187f840551" }, "from" : "2370180", "to" : "2370179", "distance" : 420 }
{ "_id" : { "$oid" : "54db529b44ae2c187f840552" }, "from" : "2370179", "to" : "2370493", "distance" : 977 }
{ "_id" : { "$oid" : "54db529b44ae2c187f840553" }, "from" : "2370493", "to" : "2370495", "distance" : 633 }
{ "_id" : { "$oid" : "54db529b44ae2c187f840554" }, "from" : "2370495", "to" : "2370492", "distance" : 625 }
{ "_id" : { "$oid" : "54db529c44ae2c187f840555" }, "from" : "2370492", "to" : "2370104", "distance" : 514 }
{ "_id" : { "$oid" : "54db529c44ae2c187f840556" }, "from" : "2370104", "to" : "2370248", "distance" : 553 }
{ "_id" : { "$oid" : "54db529d44ae2c187f840557" }, "from" : "2370248", "to" : "2370492", "distance" : 1071 }
{ "_id" : { "$oid" : "54db529d44ae2c187f840558" }, "from" : "2370492", "to" : "2370493", "distance" : 1258 }
{ "_id" : { "$oid" : "54db529d44ae2c187f840559" }, "from" : "2370493", "to" : "2370242", "distance" : 2256 }
{ "_id" : { "$oid" : "54db529e44ae2c187f84055a" }, "from" : "2370242", "to" : "2370240", "distance" : 1721 }
{ "_id" : { "$oid" : "54db529e44ae2c187f84055b" }, "from" : "3010624", "to" : "3010626", "distance" : 259 }
{ "_id" : { "$oid" : "54db529f44ae2c187f84055c" }, "from" : "3010626", "to" : "3010613", "distance" : 324 }
{ "_id" : { "$oid" : "54db529f44ae2c187f84055d" }, "from" : "3010613", "to" : "3010617", "distance" : 877 }
{ "_id" : { "$oid" : "54db529f44ae2c187f84055e" }, "from" : "3010617", "to" : "3010012", "distance" : 706 }
{ "_id" : { "$oid" : "54db52a044ae2c187f84055f" }, "from" : "3010012", "to" : "3010082", "distance" : 1009 }
{ "_id" : { "$oid" : "54db52a044ae2c187f840560" }, "from" : "3010082", "to" : "3010324", "distance" : 308 }
{ "_id" : { "$oid" : "54db52a044ae2c187f840561" }, "from" : "3010324", "to" : "3010323", "distance" : 377 }
{ "_id" : { "$oid" : "54db52a144ae2c187f840562" }, "from" : "3010323", "to" : "3010320", "distance" : 723 }
{ "_id" : { "$oid" : "54db52a144ae2c187f840563" }, "from" : "3010320", "to" : "3010326", "distance" : 776 }
{ "_id" : { "$oid" : "54db52a244ae2c187f840564" }, "from" : "3010326", "to" : "3010335", "distance" : 540 }
{ "_id" : { "$oid" : "54db52a244ae2c187f840565" }, "from" : "3010335", "to" : "3010336", "distance" : 248 }
{ "_id" : { "$oid" : "54db52a244ae2c187f840566" }, "from" : "3010336", "to" : "3010345", "distance" : 203 }
{ "_id" : { "$oid" : "54db52a344ae2c187f840567" }, "from" : "3010345", "to" : "3010410", "distance" : 564 }
{ "_id" : { "$oid" : "54db52a344ae2c187f840568" }, "from" : "3010410", "to" : "3010425", "distance" : 447 }
{ "_id" : { "$oid" : "54db52a444ae2c187f840569" }, "from" : "3010425", "to" : "3010423", "distance" : 304 }
{ "_id" : { "$oid" : "54db52a444ae2c187f84056a" }, "from" : "3010423", "to" : "3010420", "distance" : 384 }
{ "_id" : { "$oid" : "54db52a444ae2c187f84056b" }, "from" : "3010420", "to" : "3010427", "distance" : 361 }
{ "_id" : { "$oid" : "54db52a544ae2c187f84056c" }, "from" : "3010427", "to" : "3012238", "distance" : 310 }
{ "_id" : { "$oid" : "54db52a544ae2c187f84056d" }, "from" : "3012238", "to" : "3012131", "distance" : 522 }
{ "_id" : { "$oid" : "54db52a644ae2c187f84056e" }, "from" : "4023630", "to" : "4024700", "distance" : 858 }
{ "_id" : { "$oid" : "54db52a644ae2c187f84056f" }, "from" : "4024700", "to" : "4024726", "distance" : 1069 }
{ "_id" : { "$oid" : "54db52a644ae2c187f840570" }, "from" : "4024726", "to" : "4024738", "distance" : 1151 }
{ "_id" : { "$oid" : "54db52a744ae2c187f840571" }, "from" : "4024738", "to" : "4023642", "distance" : 566 }
{ "_id" : { "$oid" : "54db52a844ae2c187f840572" }, "from" : "4023642", "to" : "4023645", "distance" : 529 }
{ "_id" : { "$oid" : "54db52a844ae2c187f840573" }, "from" : "4023645", "to" : "4023644", "distance" : 736 }
{ "_id" : { "$oid" : "54db52a844ae2c187f840574" }, "from" : "4023644", "to" : "4023648", "distance" : 1451 }
{ "_id" : { "$oid" : "54db52a944ae2c187f840575" }, "from" : "4023648", "to" : "4193650", "distance" : 2339 }
{ "_id" : { "$oid" : "54db52a944ae2c187f840576" }, "from" : "4193650", "to" : "4193680", "distance" : 11742 }
{ "_id" : { "$oid" : "54db52a944ae2c187f840577" }, "from" : "4193680", "to" : "4193682", "distance" : 1133 }
{ "_id" : { "$oid" : "54db52aa44ae2c187f840578" }, "from" : "4193682", "to" : "4193673", "distance" : 535 }
{ "_id" : { "$oid" : "54db52aa44ae2c187f840579" }, "from" : "4193673", "to" : "4193683", "distance" : 724 }
{ "_id" : { "$oid" : "54db52ab44ae2c187f84057a" }, "from" : "4193683", "to" : "4194545", "distance" : 1100 }
{ "_id" : { "$oid" : "54db52ab44ae2c187f84057b" }, "from" : "4194545", "to" : "4194546", "distance" : 431 }
{ "_id" : { "$oid" : "54db52ab44ae2c187f84057c" }, "from" : "4194546", "to" : "4194550", "distance" : 990 }
{ "_id" : { "$oid" : "54db52ac44ae2c187f84057d" }, "from" : "4194550", "to" : "4194547", "distance" : 907 }
{ "_id" : { "$oid" : "54db52ac44ae2c187f84057e" }, "from" : "4194547", "to" : "4194551", "distance" : 1165 }
{ "_id" : { "$oid" : "54db52ac44ae2c187f84057f" }, "from" : "4194551", "to" : "4194552", "distance" : 479 }
{ "_id" : { "$oid" : "54db52ad44ae2c187f840580" }, "from" : "4194552", "to" : "4194555", "distance" : 374 }
{ "_id" : { "$oid" : "54db52ad44ae2c187f840581" }, "from" : "4194555", "to" : "4194556", "distance" : 605 }
{ "_id" : { "$oid" : "54db52ae44ae2c187f840582" }, "from" : "4194556", "to" : "4194554", "distance" : 1040 }
{ "_id" : { "$oid" : "54db52ae44ae2c187f840583" }, "from" : "4194554", "to" : "4194557", "distance" : 630 }
{ "_id" : { "$oid" : "54db52ae44ae2c187f840584" }, "from" : "4194557", "to" : "4190201", "distance" : 1443 }
{ "_id" : { "$oid" : "54db52af44ae2c187f840585" }, "from" : "4190201", "to" : "2360400", "distance" : 780 }
{ "_id" : { "$oid" : "54db52af44ae2c187f840586" }, "from" : "2360400", "to" : "2360550", "distance" : 1523 }
{ "_id" : { "$oid" : "54db52af44ae2c187f840587" }, "from" : "2360550", "to" : "2360410", "distance" : 3520 }
{ "_id" : { "$oid" : "54db52b044ae2c187f840588" }, "from" : "2360410", "to" : "2360411", "distance" : 6808 }
{ "_id" : { "$oid" : "54db52b044ae2c187f840589" }, "from" : "2360411", "to" : "2360510", "distance" : 512 }
{ "_id" : { "$oid" : "54db52b144ae2c187f84058a" }, "from" : "2360510", "to" : "2360416", "distance" : 792 }
{ "_id" : { "$oid" : "54db52b144ae2c187f84058b" }, "from" : "2360416", "to" : "2360511", "distance" : 1853 }
{ "_id" : { "$oid" : "54db52b144ae2c187f84058c" }, "from" : "2360511", "to" : "2360514", "distance" : 1719 }
{ "_id" : { "$oid" : "54db52b244ae2c187f84058d" }, "from" : "2360514", "to" : "2360517", "distance" : 1379 }
{ "_id" : { "$oid" : "54db52b244ae2c187f84058e" }, "from" : "2360517", "to" : "2360030", "distance" : 792 }
{ "_id" : { "$oid" : "54db52b244ae2c187f84058f" }, "from" : "2360030", "to" : "2360031", "distance" : 1406 }
{ "_id" : { "$oid" : "54db52b344ae2c187f840590" }, "from" : "2360031", "to" : "2360034", "distance" : 1413 }
{ "_id" : { "$oid" : "54db52b344ae2c187f840591" }, "from" : "2360034", "to" : "2360032", "distance" : 316 }
{ "_id" : { "$oid" : "54db52b444ae2c187f840592" }, "from" : "2360032", "to" : "2360033", "distance" : 4422 }
{ "_id" : { "$oid" : "54db52b444ae2c187f840593" }, "from" : "2360033", "to" : "2360318", "distance" : 679 }
{ "_id" : { "$oid" : "54db52b444ae2c187f840594" }, "from" : "2360318", "to" : "2360319", "distance" : 922 }
{ "_id" : { "$oid" : "54db52b544ae2c187f840595" }, "from" : "2360319", "to" : "2350319", "distance" : 1301 }
{ "_id" : { "$oid" : "54db52b544ae2c187f840596" }, "from" : "2350319", "to" : "2350105", "distance" : 14392 }
{ "_id" : { "$oid" : "54db52b544ae2c187f840597" }, "from" : "2350105", "to" : "2350452", "distance" : 16843 }
{ "_id" : { "$oid" : "54db52b644ae2c187f840598" }, "from" : "2350452", "to" : "2310109", "distance" : 16495 }
{ "_id" : { "$oid" : "54db52b644ae2c187f840599" }, "from" : "2310109", "to" : "3011760", "distance" : 7278 }
{ "_id" : { "$oid" : "54db52b744ae2c187f84059a" }, "from" : "3011760", "to" : "3011962", "distance" : 2450 }
{ "_id" : { "$oid" : "54db52b744ae2c187f84059b" }, "from" : "3011962", "to" : "3011961", "distance" : 495 }
{ "_id" : { "$oid" : "54db52b744ae2c187f84059c" }, "from" : "3011961", "to" : "3012036", "distance" : 913 }
{ "_id" : { "$oid" : "54db52b844ae2c187f84059d" }, "from" : "3012036", "to" : "3012035", "distance" : 1391 }
{ "_id" : { "$oid" : "54db52b844ae2c187f84059e" }, "from" : "3012035", "to" : "3012011", "distance" : 795 }
{ "_id" : { "$oid" : "54db52b844ae2c187f84059f" }, "from" : "3012011", "to" : "3012001", "distance" : 2319 }
{ "_id" : { "$oid" : "54db52b944ae2c187f8405a0" }, "from" : "3012001", "to" : "3011439", "distance" : 2907 }
{ "_id" : { "$oid" : "54db52b944ae2c187f8405a1" }, "from" : "3011439", "to" : "3010619", "distance" : 4013 }
{ "_id" : { "$oid" : "54db52ba44ae2c187f8405a2" }, "from" : "3010640", "to" : "3010646", "distance" : 1138 }
{ "_id" : { "$oid" : "54db52ba44ae2c187f8405a3" }, "from" : "3010201", "to" : "3010222", "distance" : 298 }
{ "_id" : { "$oid" : "54db52bb44ae2c187f8405a4" }, "from" : "3010222", "to" : "3010221", "distance" : 363 }
{ "_id" : { "$oid" : "54db52bb44ae2c187f8405a5" }, "from" : "3010221", "to" : "3010220", "distance" : 377 }
{ "_id" : { "$oid" : "54db52bb44ae2c187f8405a6" }, "from" : "3010220", "to" : "3010133", "distance" : 318 }
{ "_id" : { "$oid" : "54db52bc44ae2c187f8405a7" }, "from" : "3010133", "to" : "3010140", "distance" : 395 }
{ "_id" : { "$oid" : "54db52bc44ae2c187f8405a8" }, "from" : "3010140", "to" : "3012507", "distance" : 919 }
{ "_id" : { "$oid" : "54db52bd44ae2c187f8405a9" }, "from" : "3012507", "to" : "3012501", "distance" : 1808 }
{ "_id" : { "$oid" : "54db52bd44ae2c187f8405aa" }, "from" : "2210390", "to" : "2210150", "distance" : 2361 }
{ "_id" : { "$oid" : "54db52bd44ae2c187f8405ab" }, "from" : "2210150", "to" : "2210180", "distance" : 1183 }
{ "_id" : { "$oid" : "54db52be44ae2c187f8405ac" }, "from" : "2210180", "to" : "2210220", "distance" : 863 }
{ "_id" : { "$oid" : "54db52be44ae2c187f8405ad" }, "from" : "2210220", "to" : "2210221", "distance" : 478 }
{ "_id" : { "$oid" : "54db52bf44ae2c187f8405ae" }, "from" : "2210221", "to" : "2210222", "distance" : 467 }
{ "_id" : { "$oid" : "54db52bf44ae2c187f8405af" }, "from" : "2210222", "to" : "2210223", "distance" : 356 }
{ "_id" : { "$oid" : "54db52bf44ae2c187f8405b0" }, "from" : "2210223", "to" : "2210200", "distance" : 423 }
{ "_id" : { "$oid" : "54db52c044ae2c187f8405b1" }, "from" : "2210200", "to" : "2210202", "distance" : 227 }
{ "_id" : { "$oid" : "54db52c044ae2c187f8405b2" }, "from" : "2210202", "to" : "2210201", "distance" : 115 }
{ "_id" : { "$oid" : "54db52c144ae2c187f8405b3" }, "from" : "2210201", "to" : "2210170", "distance" : 1306 }
{ "_id" : { "$oid" : "54db52c144ae2c187f8405b4" }, "from" : "2210170", "to" : "2210172", "distance" : 1751 }
{ "_id" : { "$oid" : "54db52c144ae2c187f8405b5" }, "from" : "2210172", "to" : "2210175", "distance" : 2972 }
{ "_id" : { "$oid" : "54db52c244ae2c187f8405b6" }, "from" : "2210175", "to" : "2210176", "distance" : 5155 }
{ "_id" : { "$oid" : "54db52c244ae2c187f8405b7" }, "from" : "3010090", "to" : "3010093", "distance" : 1607 }
{ "_id" : { "$oid" : "54db52c344ae2c187f8405b8" }, "from" : "3010093", "to" : "3010046", "distance" : 3355 }
{ "_id" : { "$oid" : "54db52c344ae2c187f8405b9" }, "from" : "3010046", "to" : "3010076", "distance" : 2775 }
{ "_id" : { "$oid" : "54db52c344ae2c187f8405ba" }, "from" : "3010076", "to" : "3010017", "distance" : 2552 }
{ "_id" : { "$oid" : "54db52c444ae2c187f8405bb" }, "from" : "3010017", "to" : "3010013", "distance" : 357 }
{ "_id" : { "$oid" : "54db52c444ae2c187f8405bc" }, "from" : "3010013", "to" : "3010065", "distance" : 544 }
{ "_id" : { "$oid" : "54db52c444ae2c187f8405bd" }, "from" : "3010065", "to" : "3010515", "distance" : 584 }
{ "_id" : { "$oid" : "54db52c544ae2c187f8405be" }, "from" : "3010515", "to" : "3010516", "distance" : 313 }
{ "_id" : { "$oid" : "54db52c544ae2c187f8405bf" }, "from" : "3010516", "to" : "3010331", "distance" : 451 }
{ "_id" : { "$oid" : "54db52c644ae2c187f8405c0" }, "from" : "3010331", "to" : "3010330", "distance" : 1571 }
{ "_id" : { "$oid" : "54db52c644ae2c187f8405c1" }, "from" : "3010330", "to" : "3010333", "distance" : 351 }
{ "_id" : { "$oid" : "54db52c644ae2c187f8405c2" }, "from" : "3010333", "to" : "3010405", "distance" : 1140 }
{ "_id" : { "$oid" : "54db52c744ae2c187f8405c3" }, "from" : "3010405", "to" : "3010410", "distance" : 737 }
{ "_id" : { "$oid" : "54db52c744ae2c187f8405c4" }, "from" : "3010427", "to" : "3012237", "distance" : 233 }
{ "_id" : { "$oid" : "54db52c744ae2c187f8405c5" }, "from" : "3012237", "to" : "3012236", "distance" : 376 }
{ "_id" : { "$oid" : "54db52c844ae2c187f8405c6" }, "from" : "3012236", "to" : "3012234", "distance" : 355 }
{ "_id" : { "$oid" : "54db52c844ae2c187f8405c7" }, "from" : "3012234", "to" : "3012290", "distance" : 634 }
{ "_id" : { "$oid" : "54db52c944ae2c187f8405c8" }, "from" : "3012290", "to" : "3012292", "distance" : 363 }
{ "_id" : { "$oid" : "54db52c944ae2c187f8405c9" }, "from" : "3012292", "to" : "3012293", "distance" : 299 }
{ "_id" : { "$oid" : "54db52c944ae2c187f8405ca" }, "from" : "3012293", "to" : "3012295", "distance" : 284 }
{ "_id" : { "$oid" : "54db52ca44ae2c187f8405cb" }, "from" : "3012295", "to" : "3012191", "distance" : 421 }
{ "_id" : { "$oid" : "54db52ca44ae2c187f8405cc" }, "from" : "3012191", "to" : "3012192", "distance" : 148 }
{ "_id" : { "$oid" : "54db52cb44ae2c187f8405cd" }, "from" : "3012192", "to" : "3012161", "distance" : 455 }
{ "_id" : { "$oid" : "54db52cb44ae2c187f8405ce" }, "from" : "2210591", "to" : "2270888", "distance" : 2440 }
{ "_id" : { "$oid" : "54db52cb44ae2c187f8405cf" }, "from" : "2270888", "to" : "2270240", "distance" : 2455 }
{ "_id" : { "$oid" : "54db52cc44ae2c187f8405d0" }, "from" : "2270240", "to" : "2270232", "distance" : 1439 }
{ "_id" : { "$oid" : "54db52cc44ae2c187f8405d1" }, "from" : "2270232", "to" : "2270230", "distance" : 881 }
{ "_id" : { "$oid" : "54db52cd44ae2c187f8405d2" }, "from" : "2270230", "to" : "2270231", "distance" : 282 }
{ "_id" : { "$oid" : "54db52cd44ae2c187f8405d3" }, "from" : "2270231", "to" : "2270235", "distance" : 861 }
{ "_id" : { "$oid" : "54db52cd44ae2c187f8405d4" }, "from" : "2270235", "to" : "2270220", "distance" : 888 }
{ "_id" : { "$oid" : "54db52ce44ae2c187f8405d5" }, "from" : "2270220", "to" : "2270486", "distance" : 875 }
{ "_id" : { "$oid" : "54db52ce44ae2c187f8405d6" }, "from" : "2270486", "to" : "2270487", "distance" : 413 }
{ "_id" : { "$oid" : "54db52cf44ae2c187f8405d7" }, "from" : "2340200", "to" : "2340204", "distance" : 676 }
{ "_id" : { "$oid" : "54db52cf44ae2c187f8405d8" }, "from" : "2340204", "to" : "2340206", "distance" : 558 }
{ "_id" : { "$oid" : "54db52cf44ae2c187f8405d9" }, "from" : "2340206", "to" : "2340208", "distance" : 518 }
{ "_id" : { "$oid" : "54db52d044ae2c187f8405da" }, "from" : "2340208", "to" : "2340210", "distance" : 701 }
{ "_id" : { "$oid" : "54db52d044ae2c187f8405db" }, "from" : "2340210", "to" : "2340212", "distance" : 421 }
{ "_id" : { "$oid" : "54db52d144ae2c187f8405dc" }, "from" : "2340212", "to" : "2340100", "distance" : 382 }
{ "_id" : { "$oid" : "54db52d144ae2c187f8405dd" }, "from" : "2340100", "to" : "2340102", "distance" : 1178 }
{ "_id" : { "$oid" : "54db52d144ae2c187f8405de" }, "from" : "2340102", "to" : "2340104", "distance" : 418 }
{ "_id" : { "$oid" : "54db52d244ae2c187f8405df" }, "from" : "2340104", "to" : "2310512", "distance" : 729 }
{ "_id" : { "$oid" : "54db52d244ae2c187f8405e0" }, "from" : "2310512", "to" : "2310514", "distance" : 459 }
{ "_id" : { "$oid" : "54db52d244ae2c187f8405e1" }, "from" : "2310514", "to" : "2310420", "distance" : 1068 }
{ "_id" : { "$oid" : "54db52d344ae2c187f8405e2" }, "from" : "2310420", "to" : "2310410", "distance" : 506 }
{ "_id" : { "$oid" : "54db52d344ae2c187f8405e3" }, "from" : "2310410", "to" : "2310390", "distance" : 633 }
{ "_id" : { "$oid" : "54db52d444ae2c187f8405e4" }, "from" : "2310390", "to" : "2310372", "distance" : 541 }
{ "_id" : { "$oid" : "54db52d444ae2c187f8405e5" }, "from" : "2310372", "to" : "3011619", "distance" : 11897 }
{ "_id" : { "$oid" : "54db52d444ae2c187f8405e6" }, "from" : "3011619", "to" : "3011659", "distance" : 1873 }
{ "_id" : { "$oid" : "54db52d544ae2c187f8405e7" }, "from" : "3011439", "to" : "3010006", "distance" : 4171 }
{ "_id" : { "$oid" : "54db52d544ae2c187f8405e8" }, "from" : "3010006", "to" : "3010619", "distance" : 2730 }
{ "_id" : { "$oid" : "54db52d644ae2c187f8405e9" }, "from" : "2290180", "to" : "2290115", "distance" : 680 }
{ "_id" : { "$oid" : "54db52d644ae2c187f8405ea" }, "from" : "2290115", "to" : "2290184", "distance" : 1044 }
{ "_id" : { "$oid" : "54db52d644ae2c187f8405eb" }, "from" : "2290184", "to" : "2290185", "distance" : 641 }
{ "_id" : { "$oid" : "54db52d744ae2c187f8405ec" }, "from" : "2290185", "to" : "2290186", "distance" : 345 }
{ "_id" : { "$oid" : "54db52d744ae2c187f8405ed" }, "from" : "2290186", "to" : "2290187", "distance" : 616 }
{ "_id" : { "$oid" : "54db52d844ae2c187f8405ee" }, "from" : "2290187", "to" : "2290188", "distance" : 366 }
{ "_id" : { "$oid" : "54db52d844ae2c187f8405ef" }, "from" : "2290188", "to" : "2290189", "distance" : 588 }
{ "_id" : { "$oid" : "54db52d844ae2c187f8405f0" }, "from" : "2290189", "to" : "2290130", "distance" : 434 }
{ "_id" : { "$oid" : "54db52d944ae2c187f8405f1" }, "from" : "2290130", "to" : "2290340", "distance" : 808 }
{ "_id" : { "$oid" : "54db52d944ae2c187f8405f2" }, "from" : "2290340", "to" : "2290320", "distance" : 491 }
{ "_id" : { "$oid" : "54db52d944ae2c187f8405f3" }, "from" : "2290320", "to" : "2290319", "distance" : 409 }
{ "_id" : { "$oid" : "54db52da44ae2c187f8405f4" }, "from" : "2290319", "to" : "2290318", "distance" : 182 }
{ "_id" : { "$oid" : "54db52da44ae2c187f8405f5" }, "from" : "2290318", "to" : "2290317", "distance" : 597 }
{ "_id" : { "$oid" : "54db52db44ae2c187f8405f6" }, "from" : "2290317", "to" : "2290355", "distance" : 269 }
{ "_id" : { "$oid" : "54db52db44ae2c187f8405f7" }, "from" : "2290355", "to" : "2290356", "distance" : 345 }
{ "_id" : { "$oid" : "54db52db44ae2c187f8405f8" }, "from" : "2290356", "to" : "2290357", "distance" : 445 }
{ "_id" : { "$oid" : "54db52dc44ae2c187f8405f9" }, "from" : "2290357", "to" : "2290358", "distance" : 456 }
{ "_id" : { "$oid" : "54db52dc44ae2c187f8405fa" }, "from" : "2290358", "to" : "2290120", "distance" : 623 }
{ "_id" : { "$oid" : "54db52dc44ae2c187f8405fb" }, "from" : "2290120", "to" : "2290121", "distance" : 442 }
{ "_id" : { "$oid" : "54db52dd44ae2c187f8405fc" }, "from" : "2290121", "to" : "2290122", "distance" : 356 }
{ "_id" : { "$oid" : "54db52dd44ae2c187f8405fd" }, "from" : "2290122", "to" : "2290123", "distance" : 290 }
{ "_id" : { "$oid" : "54db52de44ae2c187f8405fe" }, "from" : "2290123", "to" : "2290360", "distance" : 601 }
{ "_id" : { "$oid" : "54db52de44ae2c187f8405ff" }, "from" : "2290360", "to" : "2290123", "distance" : 601 }
{ "_id" : { "$oid" : "54db52de44ae2c187f840600" }, "from" : "2290123", "to" : "2290122", "distance" : 290 }
{ "_id" : { "$oid" : "54db52df44ae2c187f840601" }, "from" : "2290122", "to" : "2290121", "distance" : 356 }
{ "_id" : { "$oid" : "54db52df44ae2c187f840602" }, "from" : "2290121", "to" : "2290120", "distance" : 442 }
{ "_id" : { "$oid" : "54db52df44ae2c187f840603" }, "from" : "2290120", "to" : "2290124", "distance" : 849 }
{ "_id" : { "$oid" : "54db52e044ae2c187f840604" }, "from" : "2290124", "to" : "2290170", "distance" : 456 }
{ "_id" : { "$oid" : "54db52e044ae2c187f840605" }, "from" : "2290170", "to" : "2280170", "distance" : 1142 }
{ "_id" : { "$oid" : "54db52e144ae2c187f840606" }, "from" : "2280170", "to" : "2280450", "distance" : 820 }
{ "_id" : { "$oid" : "54db52e144ae2c187f840607" }, "from" : "2280450", "to" : "2280354", "distance" : 569 }
{ "_id" : { "$oid" : "54db52e144ae2c187f840608" }, "from" : "2280354", "to" : "2280355", "distance" : 634 }
{ "_id" : { "$oid" : "54db52e244ae2c187f840609" }, "from" : "2280355", "to" : "2280020", "distance" : 412 }
{ "_id" : { "$oid" : "54db52e244ae2c187f84060a" }, "from" : "2280020", "to" : "2280019", "distance" : 503 }
{ "_id" : { "$oid" : "54db52e244ae2c187f84060b" }, "from" : "2280019", "to" : "2280018", "distance" : 342 }
{ "_id" : { "$oid" : "54db52e344ae2c187f84060c" }, "from" : "2280018", "to" : "2280017", "distance" : 1124 }
{ "_id" : { "$oid" : "54db52e344ae2c187f84060d" }, "from" : "2280017", "to" : "2280022", "distance" : 844 }
{ "_id" : { "$oid" : "54db52e444ae2c187f84060e" }, "from" : "2280022", "to" : "2280021", "distance" : 430 }
{ "_id" : { "$oid" : "54db52e444ae2c187f84060f" }, "from" : "2280021", "to" : "2280475", "distance" : 394 }
{ "_id" : { "$oid" : "54db52e444ae2c187f840610" }, "from" : "2280475", "to" : "2280460", "distance" : 664 }
{ "_id" : { "$oid" : "54db52e544ae2c187f840611" }, "from" : "2280460", "to" : "2280461", "distance" : 571 }
{ "_id" : { "$oid" : "54db52e544ae2c187f840612" }, "from" : "2280461", "to" : "2280462", "distance" : 3240 }
{ "_id" : { "$oid" : "54db52e544ae2c187f840613" }, "from" : "2280462", "to" : "2280463", "distance" : 11115 }
{ "_id" : { "$oid" : "54db52e644ae2c187f840614" }, "from" : "2280463", "to" : "2280350", "distance" : 486 }
{ "_id" : { "$oid" : "54db52e644ae2c187f840615" }, "from" : "2280350", "to" : "2280351", "distance" : 333 }
{ "_id" : { "$oid" : "54db52e744ae2c187f840616" }, "from" : "2280351", "to" : "2280352", "distance" : 348 }
{ "_id" : { "$oid" : "54db52e744ae2c187f840617" }, "from" : "2280352", "to" : "2280470", "distance" : 651 }
{ "_id" : { "$oid" : "54db52e744ae2c187f840618" }, "from" : "2280470", "to" : "2280250", "distance" : 915 }
{ "_id" : { "$oid" : "54db52e844ae2c187f840619" }, "from" : "2280250", "to" : "2280106", "distance" : 434 }
{ "_id" : { "$oid" : "54db52e844ae2c187f84061a" }, "from" : "2280106", "to" : "2280110", "distance" : 880 }
{ "_id" : { "$oid" : "54db52e844ae2c187f84061b" }, "from" : "2280110", "to" : "2280114", "distance" : 157 }
{ "_id" : { "$oid" : "54db52e944ae2c187f84061c" }, "from" : "2280114", "to" : "2280115", "distance" : 743 }
{ "_id" : { "$oid" : "54db52e944ae2c187f84061d" }, "from" : "2280115", "to" : "2280113", "distance" : 407 }
{ "_id" : { "$oid" : "54db52ea44ae2c187f84061e" }, "from" : "2280113", "to" : "2280112", "distance" : 640 }
{ "_id" : { "$oid" : "54db52ea44ae2c187f84061f" }, "from" : "2280112", "to" : "2300428", "distance" : 3376 }
{ "_id" : { "$oid" : "54db52ea44ae2c187f840620" }, "from" : "2300428", "to" : "2300060", "distance" : 756 }
{ "_id" : { "$oid" : "54db52eb44ae2c187f840621" }, "from" : "2300060", "to" : "2300385", "distance" : 1846 }
{ "_id" : { "$oid" : "54db52eb44ae2c187f840622" }, "from" : "2300385", "to" : "2300263", "distance" : 1568 }
{ "_id" : { "$oid" : "54db52eb44ae2c187f840623" }, "from" : "2300263", "to" : "2300015", "distance" : 988 }
{ "_id" : { "$oid" : "54db52ec44ae2c187f840624" }, "from" : "2370318", "to" : "2370324", "distance" : 399 }
{ "_id" : { "$oid" : "54db52ec44ae2c187f840625" }, "from" : "2370324", "to" : "2370325", "distance" : 644 }
{ "_id" : { "$oid" : "54db52ed44ae2c187f840626" }, "from" : "2370325", "to" : "2370102", "distance" : 915 }
{ "_id" : { "$oid" : "54db52ed44ae2c187f840627" }, "from" : "2370102", "to" : "2370110", "distance" : 2540 }
{ "_id" : { "$oid" : "54db52ed44ae2c187f840628" }, "from" : "2370110", "to" : "2370104", "distance" : 3404 }
{ "_id" : { "$oid" : "54db52ee44ae2c187f840629" }, "from" : "2370104", "to" : "2370492", "distance" : 518 }
{ "_id" : { "$oid" : "54db52ee44ae2c187f84062a" }, "from" : "2370492", "to" : "2370495", "distance" : 625 }
{ "_id" : { "$oid" : "54db52ef44ae2c187f84062b" }, "from" : "2370495", "to" : "2370493", "distance" : 633 }
{ "_id" : { "$oid" : "54db52ef44ae2c187f84062c" }, "from" : "2370493", "to" : "2370179", "distance" : 977 }
{ "_id" : { "$oid" : "54db52ef44ae2c187f84062d" }, "from" : "2370179", "to" : "2370180", "distance" : 420 }
{ "_id" : { "$oid" : "54db52f044ae2c187f84062e" }, "from" : "2370180", "to" : "2370181", "distance" : 1431 }
{ "_id" : { "$oid" : "54db52f044ae2c187f84062f" }, "from" : "2370181", "to" : "2370183", "distance" : 734 }
{ "_id" : { "$oid" : "54db52f044ae2c187f840630" }, "from" : "2370183", "to" : "2370182", "distance" : 1070 }
{ "_id" : { "$oid" : "54db52f144ae2c187f840631" }, "from" : "2370182", "to" : "2370186", "distance" : 625 }
{ "_id" : { "$oid" : "54db52f144ae2c187f840632" }, "from" : "2370186", "to" : "2370230", "distance" : 249 }
{ "_id" : { "$oid" : "54db52f244ae2c187f840633" }, "from" : "2370230", "to" : "2370241", "distance" : 160 }
{ "_id" : { "$oid" : "54db52f244ae2c187f840634" }, "from" : "2370241", "to" : "2370231", "distance" : 423 }
{ "_id" : { "$oid" : "54db52f244ae2c187f840635" }, "from" : "2370231", "to" : "2370232", "distance" : 509 }
{ "_id" : { "$oid" : "54db52f344ae2c187f840636" }, "from" : "2370232", "to" : "2370233", "distance" : 10032 }
{ "_id" : { "$oid" : "54db52f344ae2c187f840637" }, "from" : "2370233", "to" : "2370234", "distance" : 1019 }
{ "_id" : { "$oid" : "54db52f344ae2c187f840638" }, "from" : "2370234", "to" : "2370301", "distance" : 236 }
{ "_id" : { "$oid" : "54db52f444ae2c187f840639" }, "from" : "2370301", "to" : "2370234", "distance" : 236 }
{ "_id" : { "$oid" : "54db52f444ae2c187f84063a" }, "from" : "2370234", "to" : "2370302", "distance" : 1154 }
{ "_id" : { "$oid" : "54db52f544ae2c187f84063b" }, "from" : "2370302", "to" : "2370548", "distance" : 255 }
{ "_id" : { "$oid" : "54db52f544ae2c187f84063c" }, "from" : "2110301", "to" : "2110306", "distance" : 1434 }
{ "_id" : { "$oid" : "54db52f644ae2c187f84063d" }, "from" : "2110306", "to" : "2110305", "distance" : 445 }
{ "_id" : { "$oid" : "54db52f644ae2c187f84063e" }, "from" : "2110305", "to" : "2110304", "distance" : 389 }
{ "_id" : { "$oid" : "54db52f644ae2c187f84063f" }, "from" : "2110304", "to" : "2110417", "distance" : 1508 }
{ "_id" : { "$oid" : "54db52f744ae2c187f840640" }, "from" : "2110417", "to" : "2110410", "distance" : 1155 }
{ "_id" : { "$oid" : "54db52f744ae2c187f840641" }, "from" : "2110410", "to" : "2110411", "distance" : 112 }
{ "_id" : { "$oid" : "54db52f744ae2c187f840642" }, "from" : "2110411", "to" : "2110448", "distance" : 327 }
{ "_id" : { "$oid" : "54db52f844ae2c187f840643" }, "from" : "2110448", "to" : "2110447", "distance" : 706 }
{ "_id" : { "$oid" : "54db52f844ae2c187f840644" }, "from" : "2110447", "to" : "2110431", "distance" : 1352 }
{ "_id" : { "$oid" : "54db52f944ae2c187f840645" }, "from" : "2110431", "to" : "2110430", "distance" : 326 }
{ "_id" : { "$oid" : "54db52f944ae2c187f840646" }, "from" : "2110430", "to" : "2110303", "distance" : 916 }
{ "_id" : { "$oid" : "54db52f944ae2c187f840647" }, "from" : "2110303", "to" : "2110313", "distance" : 372 }
{ "_id" : { "$oid" : "54db52fa44ae2c187f840648" }, "from" : "2110313", "to" : "2110312", "distance" : 121 }
{ "_id" : { "$oid" : "54db52fa44ae2c187f840649" }, "from" : "2110312", "to" : "2110313", "distance" : 121 }
{ "_id" : { "$oid" : "54db52fa44ae2c187f84064a" }, "from" : "2110313", "to" : "2110303", "distance" : 372 }
{ "_id" : { "$oid" : "54db52fb44ae2c187f84064b" }, "from" : "2110303", "to" : "2110304", "distance" : 239 }
{ "_id" : { "$oid" : "54db52fb44ae2c187f84064c" }, "from" : "2110304", "to" : "2110145", "distance" : 686 }
{ "_id" : { "$oid" : "54db52fc44ae2c187f84064d" }, "from" : "2110145", "to" : "2110182", "distance" : 153 }
{ "_id" : { "$oid" : "54db52fc44ae2c187f84064e" }, "from" : "2110182", "to" : "2110181", "distance" : 417 }
{ "_id" : { "$oid" : "54db52fc44ae2c187f84064f" }, "from" : "2110181", "to" : "2110180", "distance" : 229 }
{ "_id" : { "$oid" : "54db52fd44ae2c187f840650" }, "from" : "2110180", "to" : "2110181", "distance" : 229 }
{ "_id" : { "$oid" : "54db52fd44ae2c187f840651" }, "from" : "2110181", "to" : "2110145", "distance" : 571 }
{ "_id" : { "$oid" : "54db52fd44ae2c187f840652" }, "from" : "2110145", "to" : "2110305", "distance" : 307 }
{ "_id" : { "$oid" : "54db52fe44ae2c187f840653" }, "from" : "2110305", "to" : "2110306", "distance" : 445 }
{ "_id" : { "$oid" : "54db52fe44ae2c187f840654" }, "from" : "2110306", "to" : "2110301", "distance" : 1348 }
{ "_id" : { "$oid" : "54db52ff44ae2c187f840655" }, "from" : "2200350", "to" : "2200355", "distance" : 552 }
{ "_id" : { "$oid" : "54db52ff44ae2c187f840656" }, "from" : "2200355", "to" : "2200360", "distance" : 464 }
{ "_id" : { "$oid" : "54db52ff44ae2c187f840657" }, "from" : "2200360", "to" : "2200365", "distance" : 947 }
{ "_id" : { "$oid" : "54db530044ae2c187f840658" }, "from" : "2200365", "to" : "2200435", "distance" : 3079 }
{ "_id" : { "$oid" : "54db530044ae2c187f840659" }, "from" : "3011441", "to" : "3011451", "distance" : 2772 }
{ "_id" : { "$oid" : "54db530144ae2c187f84065a" }, "from" : "3011451", "to" : "3011221", "distance" : 444 }
{ "_id" : { "$oid" : "54db530144ae2c187f84065b" }, "from" : "3011221", "to" : "3011211", "distance" : 1122 }
{ "_id" : { "$oid" : "54db530244ae2c187f84065c" }, "from" : "3011211", "to" : "3011201", "distance" : 536 }
{ "_id" : { "$oid" : "54db530244ae2c187f84065d" }, "from" : "3011201", "to" : "3010743", "distance" : 2685 }
{ "_id" : { "$oid" : "54db530244ae2c187f84065e" }, "from" : "3010736", "to" : "3010734", "distance" : 1543 }
{ "_id" : { "$oid" : "54db530344ae2c187f84065f" }, "from" : "3010734", "to" : "3010755", "distance" : 289 }
{ "_id" : { "$oid" : "54db530344ae2c187f840660" }, "from" : "3010755", "to" : "3010754", "distance" : 359 }
{ "_id" : { "$oid" : "54db530444ae2c187f840661" }, "from" : "3010754", "to" : "3010753", "distance" : 205 }
{ "_id" : { "$oid" : "54db530444ae2c187f840662" }, "from" : "3010753", "to" : "3010752", "distance" : 520 }
{ "_id" : { "$oid" : "54db530444ae2c187f840663" }, "from" : "3010752", "to" : "3010751", "distance" : 184 }
{ "_id" : { "$oid" : "54db530544ae2c187f840664" }, "from" : "3010751", "to" : "3010752", "distance" : 184 }
{ "_id" : { "$oid" : "54db530544ae2c187f840665" }, "from" : "3010752", "to" : "3010753", "distance" : 520 }
{ "_id" : { "$oid" : "54db530544ae2c187f840666" }, "from" : "3010753", "to" : "3010754", "distance" : 205 }
{ "_id" : { "$oid" : "54db530644ae2c187f840667" }, "from" : "3010754", "to" : "3010755", "distance" : 359 }
{ "_id" : { "$oid" : "54db530644ae2c187f840668" }, "from" : "3010755", "to" : "3010732", "distance" : 433 }
{ "_id" : { "$oid" : "54db530744ae2c187f840669" }, "from" : "3010732", "to" : "3010713", "distance" : 1218 }
{ "_id" : { "$oid" : "54db530744ae2c187f84066a" }, "from" : "3010713", "to" : "3010006", "distance" : 2093 }
{ "_id" : { "$oid" : "54db530744ae2c187f84066b" }, "from" : "3010006", "to" : "3010005", "distance" : 2522 }
{ "_id" : { "$oid" : "54db530844ae2c187f84066c" }, "from" : "2370714", "to" : "2370445", "distance" : 334 }
{ "_id" : { "$oid" : "54db530844ae2c187f84066d" }, "from" : "2370445", "to" : "2370443", "distance" : 387 }
{ "_id" : { "$oid" : "54db530944ae2c187f84066e" }, "from" : "2370443", "to" : "2370312", "distance" : 437 }
{ "_id" : { "$oid" : "54db530944ae2c187f84066f" }, "from" : "2370312", "to" : "2370313", "distance" : 525 }
{ "_id" : { "$oid" : "54db530944ae2c187f840670" }, "from" : "2370313", "to" : "2370315", "distance" : 624 }
{ "_id" : { "$oid" : "54db530a44ae2c187f840671" }, "from" : "2370315", "to" : "2370317", "distance" : 2547 }
{ "_id" : { "$oid" : "54db530a44ae2c187f840672" }, "from" : "2370317", "to" : "2370319", "distance" : 644 }
{ "_id" : { "$oid" : "54db530b44ae2c187f840673" }, "from" : "2370319", "to" : "2370326", "distance" : 654 }
{ "_id" : { "$oid" : "54db530b44ae2c187f840674" }, "from" : "2370326", "to" : "2370601", "distance" : 754 }
{ "_id" : { "$oid" : "54db530b44ae2c187f840675" }, "from" : "2370601", "to" : "2370135", "distance" : 310 }
{ "_id" : { "$oid" : "54db530c44ae2c187f840676" }, "from" : "2370135", "to" : "2370136", "distance" : 405 }
{ "_id" : { "$oid" : "54db530c44ae2c187f840677" }, "from" : "2370136", "to" : "2370131", "distance" : 430 }
{ "_id" : { "$oid" : "54db530c44ae2c187f840678" }, "from" : "2370131", "to" : "2370130", "distance" : 1293 }
{ "_id" : { "$oid" : "54db530d44ae2c187f840679" }, "from" : "2370130", "to" : "2370133", "distance" : 395 }
{ "_id" : { "$oid" : "54db530d44ae2c187f84067a" }, "from" : "2370133", "to" : "2370213", "distance" : 928 }
{ "_id" : { "$oid" : "54db530e44ae2c187f84067b" }, "from" : "2370213", "to" : "2370211", "distance" : 655 }
{ "_id" : { "$oid" : "54db530e44ae2c187f84067c" }, "from" : "2370211", "to" : "2370210", "distance" : 1006 }
{ "_id" : { "$oid" : "54db530e44ae2c187f84067d" }, "from" : "2370210", "to" : "2370293", "distance" : 448 }
{ "_id" : { "$oid" : "54db530f44ae2c187f84067e" }, "from" : "2370293", "to" : "2370294", "distance" : 1087 }
{ "_id" : { "$oid" : "54db530f44ae2c187f84067f" }, "from" : "2370294", "to" : "2370295", "distance" : 760 }
{ "_id" : { "$oid" : "54db531044ae2c187f840680" }, "from" : "2210170", "to" : "2210171", "distance" : 774 }
{ "_id" : { "$oid" : "54db531044ae2c187f840681" }, "from" : "2210171", "to" : "2210160", "distance" : 858 }
{ "_id" : { "$oid" : "54db531044ae2c187f840682" }, "from" : "2210160", "to" : "2210161", "distance" : 1035 }
{ "_id" : { "$oid" : "54db531144ae2c187f840683" }, "from" : "2210161", "to" : "2260161", "distance" : 1686 }
{ "_id" : { "$oid" : "54db531144ae2c187f840684" }, "from" : "2260161", "to" : "2210101", "distance" : 3060 }
{ "_id" : { "$oid" : "54db531144ae2c187f840685" }, "from" : "2210101", "to" : "2260070", "distance" : 1008 }
{ "_id" : { "$oid" : "54db531244ae2c187f840686" }, "from" : "2260070", "to" : "2210101", "distance" : 1008 }
{ "_id" : { "$oid" : "54db531244ae2c187f840687" }, "from" : "2210101", "to" : "2210100", "distance" : 717 }
{ "_id" : { "$oid" : "54db531344ae2c187f840688" }, "from" : "2210100", "to" : "2210005", "distance" : 2200 }
{ "_id" : { "$oid" : "54db531344ae2c187f840689" }, "from" : "2210005", "to" : "2210003", "distance" : 1312 }
{ "_id" : { "$oid" : "54db531344ae2c187f84068a" }, "from" : "2210003", "to" : "2210007", "distance" : 2082 }
{ "_id" : { "$oid" : "54db531444ae2c187f84068b" }, "from" : "2130301", "to" : "2130293", "distance" : 385 }
{ "_id" : { "$oid" : "54db531444ae2c187f84068c" }, "from" : "2130293", "to" : "2130295", "distance" : 458 }
{ "_id" : { "$oid" : "54db531544ae2c187f84068d" }, "from" : "2130295", "to" : "2130324", "distance" : 673 }
{ "_id" : { "$oid" : "54db531544ae2c187f84068e" }, "from" : "2130324", "to" : "2130295", "distance" : 645 }
{ "_id" : { "$oid" : "54db531544ae2c187f84068f" }, "from" : "2130295", "to" : "2130293", "distance" : 458 }
{ "_id" : { "$oid" : "54db531644ae2c187f840690" }, "from" : "2130293", "to" : "2130308", "distance" : 246 }
{ "_id" : { "$oid" : "54db531644ae2c187f840691" }, "from" : "2130308", "to" : "2130301", "distance" : 155 }
{ "_id" : { "$oid" : "54db531744ae2c187f840692" }, "from" : "2140252", "to" : "2140256", "distance" : 733 }
{ "_id" : { "$oid" : "54db531744ae2c187f840693" }, "from" : "2140256", "to" : "2140258", "distance" : 613 }
{ "_id" : { "$oid" : "54db531744ae2c187f840694" }, "from" : "2140258", "to" : "2140259", "distance" : 428 }
{ "_id" : { "$oid" : "54db531844ae2c187f840695" }, "from" : "2140259", "to" : "2140254", "distance" : 499 }
{ "_id" : { "$oid" : "54db531844ae2c187f840696" }, "from" : "2140254", "to" : "2140262", "distance" : 1147 }
{ "_id" : { "$oid" : "54db531844ae2c187f840697" }, "from" : "2140262", "to" : "2140162", "distance" : 826 }
{ "_id" : { "$oid" : "54db531944ae2c187f840698" }, "from" : "2140162", "to" : "2150229", "distance" : 3485 }
{ "_id" : { "$oid" : "54db531944ae2c187f840699" }, "from" : "2150229", "to" : "2150643", "distance" : 313 }
{ "_id" : { "$oid" : "54db531a44ae2c187f84069a" }, "from" : "2150643", "to" : "2150642", "distance" : 696 }
{ "_id" : { "$oid" : "54db531a44ae2c187f84069b" }, "from" : "2150642", "to" : "2150641", "distance" : 398 }
{ "_id" : { "$oid" : "54db531a44ae2c187f84069c" }, "from" : "2150641", "to" : "2140082", "distance" : 1177 }
{ "_id" : { "$oid" : "54db531b44ae2c187f84069d" }, "from" : "2140082", "to" : "2140081", "distance" : 550 }
{ "_id" : { "$oid" : "54db531b44ae2c187f84069e" }, "from" : "2140081", "to" : "2140248", "distance" : 1896 }
{ "_id" : { "$oid" : "54db531b44ae2c187f84069f" }, "from" : "2140248", "to" : "2140080", "distance" : 544 }
{ "_id" : { "$oid" : "54db531c44ae2c187f8406a0" }, "from" : "2140080", "to" : "2140130", "distance" : 598 }
{ "_id" : { "$oid" : "54db531c44ae2c187f8406a1" }, "from" : "2140130", "to" : "2140230", "distance" : 425 }
{ "_id" : { "$oid" : "54db531d44ae2c187f8406a2" }, "from" : "2140230", "to" : "2140221", "distance" : 538 }
{ "_id" : { "$oid" : "54db531d44ae2c187f8406a3" }, "from" : "2140221", "to" : "2140024", "distance" : 779 }
{ "_id" : { "$oid" : "54db531d44ae2c187f8406a4" }, "from" : "2140024", "to" : "2140026", "distance" : 490 }
{ "_id" : { "$oid" : "54db531e44ae2c187f8406a5" }, "from" : "2140026", "to" : "2140090", "distance" : 476 }
{ "_id" : { "$oid" : "54db531e44ae2c187f8406a6" }, "from" : "2140090", "to" : "2140141", "distance" : 999 }
{ "_id" : { "$oid" : "54db531e44ae2c187f8406a7" }, "from" : "2140141", "to" : "2140147", "distance" : 1375 }
{ "_id" : { "$oid" : "54db531f44ae2c187f8406a8" }, "from" : "2140147", "to" : "2140143", "distance" : 558 }
{ "_id" : { "$oid" : "54db531f44ae2c187f8406a9" }, "from" : "3010220", "to" : "3010131", "distance" : 375 }
{ "_id" : { "$oid" : "54db532044ae2c187f8406aa" }, "from" : "3010131", "to" : "3010134", "distance" : 693 }
{ "_id" : { "$oid" : "54db532044ae2c187f8406ab" }, "from" : "3010134", "to" : "3010114", "distance" : 300 }
{ "_id" : { "$oid" : "54db532044ae2c187f8406ac" }, "from" : "3010114", "to" : "3010110", "distance" : 355 }
{ "_id" : { "$oid" : "54db532144ae2c187f8406ad" }, "from" : "3010110", "to" : "3010076", "distance" : 0 }
{ "_id" : { "$oid" : "54db532144ae2c187f8406ae" }, "from" : "3010065", "to" : "3010510", "distance" : 315 }
{ "_id" : { "$oid" : "54db532244ae2c187f8406af" }, "from" : "3010510", "to" : "3010511", "distance" : 318 }
{ "_id" : { "$oid" : "54db532244ae2c187f8406b0" }, "from" : "3010511", "to" : "3010512", "distance" : 209 }
{ "_id" : { "$oid" : "54db532244ae2c187f8406b1" }, "from" : "3010512", "to" : "3010513", "distance" : 255 }
{ "_id" : { "$oid" : "54db532344ae2c187f8406b2" }, "from" : "3010513", "to" : "3010520", "distance" : 519 }
{ "_id" : { "$oid" : "54db532344ae2c187f8406b3" }, "from" : "3010520", "to" : "3010527", "distance" : 410 }
{ "_id" : { "$oid" : "54db532344ae2c187f8406b4" }, "from" : "3010527", "to" : "3010430", "distance" : 563 }
{ "_id" : { "$oid" : "54db532444ae2c187f8406b5" }, "from" : "3010430", "to" : "3010440", "distance" : 520 }
{ "_id" : { "$oid" : "54db532444ae2c187f8406b6" }, "from" : "3010440", "to" : "3010443", "distance" : 474 }
{ "_id" : { "$oid" : "54db532544ae2c187f8406b7" }, "from" : "3010443", "to" : "3012121", "distance" : 399 }
{ "_id" : { "$oid" : "54db532544ae2c187f8406b8" }, "from" : "3012121", "to" : "3012140", "distance" : 506 }
{ "_id" : { "$oid" : "54db532544ae2c187f8406b9" }, "from" : "3012140", "to" : "3012145", "distance" : 491 }
{ "_id" : { "$oid" : "54db532644ae2c187f8406ba" }, "from" : "3012145", "to" : "3012146", "distance" : 439 }
{ "_id" : { "$oid" : "54db532644ae2c187f8406bb" }, "from" : "3012146", "to" : "3012147", "distance" : 397 }
{ "_id" : { "$oid" : "54db532744ae2c187f8406bc" }, "from" : "3012147", "to" : "3012165", "distance" : 469 }
{ "_id" : { "$oid" : "54db532744ae2c187f8406bd" }, "from" : "3012165", "to" : "3012164", "distance" : 375 }
{ "_id" : { "$oid" : "54db532744ae2c187f8406be" }, "from" : "3012164", "to" : "3012161", "distance" : 396 }
{ "_id" : { "$oid" : "54db532844ae2c187f8406bf" }, "from" : "2290180", "to" : "2290154", "distance" : 730 }
{ "_id" : { "$oid" : "54db532844ae2c187f8406c0" }, "from" : "2290154", "to" : "2290153", "distance" : 370 }
{ "_id" : { "$oid" : "54db532944ae2c187f8406c1" }, "from" : "2290153", "to" : "2290152", "distance" : 519 }
{ "_id" : { "$oid" : "54db532944ae2c187f8406c2" }, "from" : "2290152", "to" : "2290151", "distance" : 514 }
{ "_id" : { "$oid" : "54db532944ae2c187f8406c3" }, "from" : "2290151", "to" : "2290150", "distance" : 285 }
{ "_id" : { "$oid" : "54db532a44ae2c187f8406c4" }, "from" : "3012161", "to" : "3012192", "distance" : 390 }
{ "_id" : { "$oid" : "54db532a44ae2c187f8406c5" }, "from" : "3012192", "to" : "3012194", "distance" : 572 }
{ "_id" : { "$oid" : "54db532b44ae2c187f8406c6" }, "from" : "3012194", "to" : "3012295", "distance" : 559 }
{ "_id" : { "$oid" : "54db532b44ae2c187f8406c7" }, "from" : "3012295", "to" : "3012293", "distance" : 1004 }
{ "_id" : { "$oid" : "54db532b44ae2c187f8406c8" }, "from" : "3012293", "to" : "3012292", "distance" : 299 }
{ "_id" : { "$oid" : "54db532c44ae2c187f8406c9" }, "from" : "3012292", "to" : "3012290", "distance" : 363 }
{ "_id" : { "$oid" : "54db532c44ae2c187f8406ca" }, "from" : "3012290", "to" : "3012234", "distance" : 634 }
{ "_id" : { "$oid" : "54db532d44ae2c187f8406cb" }, "from" : "3012234", "to" : "3012235", "distance" : 157 }
{ "_id" : { "$oid" : "54db532d44ae2c187f8406cc" }, "from" : "3012235", "to" : "3012236", "distance" : 205 }
{ "_id" : { "$oid" : "54db532d44ae2c187f8406cd" }, "from" : "3012236", "to" : "3012237", "distance" : 376 }
{ "_id" : { "$oid" : "54db532e44ae2c187f8406ce" }, "from" : "3012237", "to" : "3010427", "distance" : 219 }
{ "_id" : { "$oid" : "54db532e44ae2c187f8406cf" }, "from" : "3010427", "to" : "3010420", "distance" : 395 }
{ "_id" : { "$oid" : "54db532e44ae2c187f8406d0" }, "from" : "3010420", "to" : "3010423", "distance" : 724 }
{ "_id" : { "$oid" : "54db532f44ae2c187f8406d1" }, "from" : "3010423", "to" : "3010425", "distance" : 382 }
{ "_id" : { "$oid" : "54db532f44ae2c187f8406d2" }, "from" : "3010410", "to" : "3010405", "distance" : 439 }
{ "_id" : { "$oid" : "54db533044ae2c187f8406d3" }, "from" : "3010405", "to" : "3010333", "distance" : 521 }
{ "_id" : { "$oid" : "54db533044ae2c187f8406d4" }, "from" : "3010333", "to" : "3010330", "distance" : 266 }
{ "_id" : { "$oid" : "54db533044ae2c187f8406d5" }, "from" : "3010330", "to" : "3010331", "distance" : 440 }
{ "_id" : { "$oid" : "54db533144ae2c187f8406d6" }, "from" : "3010331", "to" : "3010516", "distance" : 453 }
{ "_id" : { "$oid" : "54db533144ae2c187f8406d7" }, "from" : "3010516", "to" : "3010514", "distance" : 535 }
{ "_id" : { "$oid" : "54db533144ae2c187f8406d8" }, "from" : "3010514", "to" : "3010065", "distance" : 610 }
{ "_id" : { "$oid" : "54db533244ae2c187f8406d9" }, "from" : "3010065", "to" : "3010013", "distance" : 1036 }
{ "_id" : { "$oid" : "54db533244ae2c187f8406da" }, "from" : "3010013", "to" : "3010076", "distance" : 1845 }
{ "_id" : { "$oid" : "54db533344ae2c187f8406db" }, "from" : "3010076", "to" : "3010046", "distance" : 1622 }
{ "_id" : { "$oid" : "54db533344ae2c187f8406dc" }, "from" : "3010046", "to" : "3010093", "distance" : 1900 }
{ "_id" : { "$oid" : "54db533344ae2c187f8406dd" }, "from" : "3010093", "to" : "3010090", "distance" : 5073 }
{ "_id" : { "$oid" : "54db533444ae2c187f8406de" }, "from" : "6271527", "to" : "6271610", "distance" : 463 }
{ "_id" : { "$oid" : "54db533444ae2c187f8406df" }, "from" : "6271610", "to" : "6271620", "distance" : 281 }
{ "_id" : { "$oid" : "54db533544ae2c187f8406e0" }, "from" : "6271620", "to" : "2200990", "distance" : 662 }
{ "_id" : { "$oid" : "54db533544ae2c187f8406e1" }, "from" : "2200990", "to" : "2200740", "distance" : 255 }
{ "_id" : { "$oid" : "54db533544ae2c187f8406e2" }, "from" : "2200740", "to" : "2200732", "distance" : 4301 }
{ "_id" : { "$oid" : "54db533644ae2c187f8406e3" }, "from" : "2200732", "to" : "2200735", "distance" : 5422 }
{ "_id" : { "$oid" : "54db533644ae2c187f8406e4" }, "from" : "2200735", "to" : "2200730", "distance" : 440 }
{ "_id" : { "$oid" : "54db533744ae2c187f8406e5" }, "from" : "2200730", "to" : "2200751", "distance" : 368 }
{ "_id" : { "$oid" : "54db533744ae2c187f8406e6" }, "from" : "2200751", "to" : "2200752", "distance" : 649 }
{ "_id" : { "$oid" : "54db533744ae2c187f8406e7" }, "from" : "2200752", "to" : "2200754", "distance" : 496 }
{ "_id" : { "$oid" : "54db533844ae2c187f8406e8" }, "from" : "2200754", "to" : "2200756", "distance" : 346 }
{ "_id" : { "$oid" : "54db533844ae2c187f8406e9" }, "from" : "2200756", "to" : "2200625", "distance" : 2286 }
{ "_id" : { "$oid" : "54db533844ae2c187f8406ea" }, "from" : "2200625", "to" : "2200445", "distance" : 3620 }
{ "_id" : { "$oid" : "54db533944ae2c187f8406eb" }, "from" : "2200445", "to" : "2200440", "distance" : 748 }
{ "_id" : { "$oid" : "54db533944ae2c187f8406ec" }, "from" : "2200440", "to" : "2200435", "distance" : 3065 }
{ "_id" : { "$oid" : "54db533a44ae2c187f8406ed" }, "from" : "2200435", "to" : "2200430", "distance" : 2311 }
{ "_id" : { "$oid" : "54db533a44ae2c187f8406ee" }, "from" : "2200430", "to" : "2200425", "distance" : 468 }
{ "_id" : { "$oid" : "54db533a44ae2c187f8406ef" }, "from" : "2200425", "to" : "2200340", "distance" : 505 }
{ "_id" : { "$oid" : "54db533b44ae2c187f8406f0" }, "from" : "2200340", "to" : "2200335", "distance" : 423 }
{ "_id" : { "$oid" : "54db533b44ae2c187f8406f1" }, "from" : "2200335", "to" : "2200330", "distance" : 253 }
{ "_id" : { "$oid" : "54db533b44ae2c187f8406f2" }, "from" : "2200330", "to" : "2200325", "distance" : 781 }
{ "_id" : { "$oid" : "54db533c44ae2c187f8406f3" }, "from" : "2200325", "to" : "2200315", "distance" : 509 }
{ "_id" : { "$oid" : "54db533c44ae2c187f8406f4" }, "from" : "2200315", "to" : "2190040", "distance" : 10822 }
{ "_id" : { "$oid" : "54db533d44ae2c187f8406f5" }, "from" : "2190040", "to" : "3012552", "distance" : 1276 }
{ "_id" : { "$oid" : "54db533d44ae2c187f8406f6" }, "from" : "3012522", "to" : "3012504", "distance" : 650 }
{ "_id" : { "$oid" : "54db533d44ae2c187f8406f7" }, "from" : "3012504", "to" : "3010093", "distance" : 3290 }
{ "_id" : { "$oid" : "54db533e44ae2c187f8406f8" }, "from" : "3010046", "to" : "3010036", "distance" : 294 }
{ "_id" : { "$oid" : "54db533e44ae2c187f8406f9" }, "from" : "3010036", "to" : "3010038", "distance" : 391 }
{ "_id" : { "$oid" : "54db533f44ae2c187f8406fa" }, "from" : "3010997", "to" : "3010996", "distance" : 277 }
{ "_id" : { "$oid" : "54db533f44ae2c187f8406fb" }, "from" : "3010996", "to" : "3010995", "distance" : 299 }
{ "_id" : { "$oid" : "54db533f44ae2c187f8406fc" }, "from" : "3010995", "to" : "3010994", "distance" : 286 }
{ "_id" : { "$oid" : "54db534044ae2c187f8406fd" }, "from" : "3010994", "to" : "3010993", "distance" : 413 }
{ "_id" : { "$oid" : "54db534044ae2c187f8406fe" }, "from" : "3010993", "to" : "3010952", "distance" : 554 }
{ "_id" : { "$oid" : "54db534144ae2c187f8406ff" }, "from" : "2370439", "to" : "2370114", "distance" : 1222 }
{ "_id" : { "$oid" : "54db534144ae2c187f840700" }, "from" : "2370114", "to" : "2370112", "distance" : 113 }
{ "_id" : { "$oid" : "54db534244ae2c187f840701" }, "from" : "2370112", "to" : "2370710", "distance" : 930 }
{ "_id" : { "$oid" : "54db534244ae2c187f840702" }, "from" : "2370710", "to" : "2370115", "distance" : 396 }
{ "_id" : { "$oid" : "54db534244ae2c187f840703" }, "from" : "2370115", "to" : "2370712", "distance" : 309 }
{ "_id" : { "$oid" : "54db534344ae2c187f840704" }, "from" : "2370712", "to" : "2370447", "distance" : 1272 }
{ "_id" : { "$oid" : "54db534344ae2c187f840705" }, "from" : "2370447", "to" : "2370714", "distance" : 597 }
{ "_id" : { "$oid" : "54db534444ae2c187f840706" }, "from" : "6279211", "to" : "3010049", "distance" : 28798 }
{ "_id" : { "$oid" : "54db534444ae2c187f840707" }, "from" : "2310301", "to" : "2310214", "distance" : 383 }
{ "_id" : { "$oid" : "54db534544ae2c187f840708" }, "from" : "2310214", "to" : "2310215", "distance" : 372 }
{ "_id" : { "$oid" : "54db534544ae2c187f840709" }, "from" : "2310215", "to" : "2310213", "distance" : 460 }
{ "_id" : { "$oid" : "54db534544ae2c187f84070a" }, "from" : "2310213", "to" : "2310212", "distance" : 278 }
{ "_id" : { "$oid" : "54db534644ae2c187f84070b" }, "from" : "2310212", "to" : "2310309", "distance" : 397 }
{ "_id" : { "$oid" : "54db534644ae2c187f84070c" }, "from" : "2310309", "to" : "2310310", "distance" : 991 }
{ "_id" : { "$oid" : "54db534644ae2c187f84070d" }, "from" : "2310310", "to" : "2310320", "distance" : 1725 }
{ "_id" : { "$oid" : "54db534744ae2c187f84070e" }, "from" : "2310320", "to" : "2310330", "distance" : 873 }
{ "_id" : { "$oid" : "54db534744ae2c187f84070f" }, "from" : "2310330", "to" : "2310340", "distance" : 766 }
{ "_id" : { "$oid" : "54db534844ae2c187f840710" }, "from" : "2310340", "to" : "2310376", "distance" : 3256 }
{ "_id" : { "$oid" : "54db534844ae2c187f840711" }, "from" : "2310376", "to" : "2310374", "distance" : 1552 }
{ "_id" : { "$oid" : "54db534844ae2c187f840712" }, "from" : "2310374", "to" : "2310372", "distance" : 4017 }
{ "_id" : { "$oid" : "54db534944ae2c187f840713" }, "from" : "2310372", "to" : "2310390", "distance" : 703 }
{ "_id" : { "$oid" : "54db534944ae2c187f840714" }, "from" : "2310390", "to" : "2310198", "distance" : 570 }
{ "_id" : { "$oid" : "54db534944ae2c187f840715" }, "from" : "2310198", "to" : "2310196", "distance" : 321 }
{ "_id" : { "$oid" : "54db534a44ae2c187f840716" }, "from" : "2310196", "to" : "2310194", "distance" : 321 }
{ "_id" : { "$oid" : "54db534a44ae2c187f840717" }, "from" : "2310194", "to" : "2310193", "distance" : 726 }
{ "_id" : { "$oid" : "54db534b44ae2c187f840718" }, "from" : "2310193", "to" : "2310191", "distance" : 585 }
{ "_id" : { "$oid" : "54db534b44ae2c187f840719" }, "from" : "2310191", "to" : "2310190", "distance" : 349 }
{ "_id" : { "$oid" : "54db534b44ae2c187f84071a" }, "from" : "2310190", "to" : "2310191", "distance" : 349 }
{ "_id" : { "$oid" : "54db534c44ae2c187f84071b" }, "from" : "2310191", "to" : "2310193", "distance" : 585 }