-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bash_history
2000 lines (1999 loc) · 51.7 KB
/
.bash_history
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
path(10.1.1.45,10.1.1.43,20)
bestPath(10.1.1.72,10.1.1.53,86)
path(10.1.1.9,10.1.1.20,40)
750557451676b2b1a8ae1d9f829b9e8f7e0a9d26
bestPath(10.1.1.68,10.1.1.41,74)
path(10.1.1.68,10.1.1.18,62)
3fea2153f56aa9edc5cb09f86affd84495a43e8b
path(10.1.1.54,10.1.1.52,27)
link(10.1.1.49,10.1.1.50,13)
bestPath(10.1.1.4,10.1.1.15,53)
7b5ec5af7d09ba070f41eaf0ee8995b81fbd53f3
bestPath(10.1.1.35,10.1.1.15,74)
80e7d6f31f497669f5bb897fa603dce7be3a23a3
path(10.1.1.39,10.1.1.33,62)
path(10.1.1.49,10.1.1.50,13)
a685181e4ec241a3007cc0ce5be267571ed0265f
path(10.1.1.43,10.1.1.18,83)
5d0fc7efea3b09dcd90639f4f46fd539a6071ef7
bestPath(10.1.1.72,10.1.1.55,73)
path(10.1.1.3,10.1.1.18,57)
path(10.1.1.64,10.1.1.70,64)
path(10.1.1.73,10.1.1.53,107)
4f5364315bcf2737a1d8f82940372a62baf03b8e
c84f193111b7d979b0fb4c387d6f32e5098d7862
path(10.1.1.13,10.1.1.15,52)
54126a69cdf72a247c1dc5568ff2ab6911453b0f
bestPath(10.1.1.43,10.1.1.41,23)
dd68f12efa4b37de22be5e65a70f4238dd8b6bff
bestPath(10.1.1.4,10.1.1.27,32)
e1cad49c6bc7d45cb077c9b03a2594637c89c3dc
5cd206b39dc8087980ce092b09c6de79d7a7e700
3cfa8fcad5fd6e182613223573af385701de212c
f63c3add8164407f4cc1e8487a3b81e8659b0faf
562b85281a5f1725bd94ddde89cac8cc58f2b134
link(10.1.1.52,10.1.1.54,21)
path(10.1.1.63,10.1.1.65,63)
bestPath(10.1.1.38,10.1.1.24,83)
11220a00b6e9ef524369360ecdfea62f382c7edd
bestPath(10.1.1.36,10.1.1.15,89)
path(10.1.1.68,10.1.1.3,62)
1e22dc3328b08c33b74268ef4e9dd03db2e5b989
f27c8b9c53fee48559cd4b52e569c028d775238f
bestPath(10.1.1.37,10.1.1.33,30)
path(10.1.1.6,10.1.1.15,59)
bestPath(10.1.1.3,10.1.1.18,56)
effd204c00b9b1e261300237ea3b9d5c449c0de6
path(10.1.1.74,10.1.1.68,81)
da1f02bfd062ae302857da6b00b5de122cbc67a4
path(10.1.1.54,10.1.1.53,44)
path(10.1.1.15,10.1.1.13,55)
path(10.1.1.44,10.1.1.43,11)
c9a11c96e38a7935df25f4fd20f08e153815eea5
path(10.1.1.11,10.1.1.15,121)
bestPath(10.1.1.27,10.1.1.24,30)
620e1ee93bc082da22345c435bddfd47b289dacd
bestPath(10.1.1.53,10.1.1.54,4)
bestPath(10.1.1.37,10.1.1.20,70)
link(10.1.1.4,10.1.1.6,6)
155c1df681814b7619f102c50c3b95f2c36abb34
bestPath(10.1.1.55,10.1.1.57,30)
bestPath(10.1.1.50,10.1.1.27,44)
path(10.1.1.29,10.1.1.3,63)
bestPath(10.1.1.41,10.1.1.24,61)
852f7b63dddb78bd7e187d6d33ca6963fe7dbacc
c7a64700cd1c3c02dd2d0e31f666717a38603a57
path(10.1.1.34,10.1.1.37,31)
bestPath(10.1.1.1,10.1.1.9,31)
path(10.1.1.68,10.1.1.37,77)
bestPath(10.1.1.46,10.1.1.33,40)
bestPath(10.1.1.19,10.1.1.22,16)
c8e6776578ea8a84cb091f51043042398dbb1352
e866f6b97a7b1af3eab76f6683ffc4b7c8e56cb1
aea50ff383dc3012cf18864ba2ff8562f3e9eddd
bestPath(10.1.1.73,10.1.1.3,64)
path(10.1.1.36,10.1.1.41,57)
path(10.1.1.16,10.1.1.18,18)
d68547e6cd9914c0141f7569b440a0dfb6375c54
bestPath(10.1.1.59,10.1.1.64,28)
link(10.1.1.3,10.1.1.5,26)
db405be864e3f07b9c5176c3345608e483aef61
bestPath(10.1.1.55,10.1.1.50,20)
path(10.1.1.58,10.1.1.53,61)
f0c7093b3cbcf5a669e2b0bbb1c203c663004148
bestPath(10.1.1.57,10.1.1.20,80)
path(10.1.1.2,10.1.1.18,36)
path(10.1.1.39,10.1.1.18,114)
path(10.1.1.74,10.1.1.3,93)
6f9061f85b9f45dd0067b33536f2c3fbd7a4518e
69d1dde791643f0d8415607b676fb8436f4556bf
958b3170842a8ae38a50d26728c0e4f08f64f71e
bestPath(10.1.1.62,10.1.1.65,47)
a6c0a9209a300b2bc43ffade987f239b5cbcd152
6ed89f974f63dac316fc055e6f0a7c4a9c921bc3
path(10.1.1.15,10.1.1.18,41)
290fe929cb912f38366e79213fb94f34ae7018f5
link(10.1.1.60,10.1.1.64,19)
4e360bbf46c2bb8686052fc3af281c086a3aa76d
bestPath(10.1.1.70,10.1.1.3,55)
471f636bfb851ac061634ac4d7a7cefea97f0b4
452dda16dbad95113585f89865237c19972b2bb8
path(10.1.1.44,10.1.1.42,28)
path(10.1.1.78,10.1.1.3,60)
16b4833ba10070e867be3d147bdea431008112fa
27aea124d40932e2ac1617503a1d718108258c87
bestPath(10.1.1.10,10.1.1.15,92)
path(10.1.1.22,10.1.1.20,41)
661f2dc0ccf6ed91e93e2b4fbba63d37e3593dd9
4fb632f4a136cfd2e2572c5b7970237b064fab89
bestPath(10.1.1.74,10.1.1.61,58)
path(10.1.1.39,10.1.1.18,103)
path(10.1.1.35,10.1.1.36,15)
path(10.1.1.37,10.1.1.15,81)
path(10.1.1.5,10.1.1.6,18)
bestPath(10.1.1.6,10.1.1.68,43)
bestPath(10.1.1.63,10.1.1.65,34)
6d786f474548ca1ac0563f306024e5264c94b84e
bestPath(10.1.1.73,10.1.1.61,50)
bestPath(10.1.1.70,10.1.1.61,41)
4def58407c7488a2a915a228a6952af6ed691094
bestPath(10.1.1.43,10.1.1.15,80)
439d1c038a45f940a55cd8666916a5835bde05e5
link(10.1.1.55,10.1.1.57,30)
bestPath(10.1.1.6,10.1.1.70,36)
path(10.1.1.62,10.1.1.65,47)
d773151009c3f2c85d27be4668055fabbb461f95
2ee76ec869342d8b373fe78313d561a0bdfc182f
path(10.1.1.22,10.1.1.20,30)
bestPath(10.1.1.28,10.1.1.24,34)
path(10.1.1.8,10.1.1.11,12)
bestPath(10.1.1.12,10.1.1.14,19)
da735e944f39c73a907fd8855b1276faa25259fd
path(10.1.1.10,10.1.1.11,45)
b3bb73c817c0fad3391e1dcf3350fe09e773ae20
4f3fb585742a86c4a5193325e730831963a6b6c4
bestPath(10.1.1.70,10.1.1.68,43)
55aa01047993f465662ae8ac06a9d68ece8e4911
path(10.1.1.10,10.1.1.11,29)
629b97ac2db9b0ed0eebf46c7ef5d225395e26ac
link(10.1.1.59,10.1.1.64,28)
3521029f75c4ef509760f78532b8e85952d483a7
e2d1204bd0440e470224fe1a99ffe3746b891b1c
4ffc176af0633750e53ff7f48beb67fa8a1c7dd0
3889bacbc46511712f20d2eedb867bae6136e344
a2455f1dd826d0613d32911b0c9fab4af374637e
93e213d85e74a53c317c7684d7ffa5d20e66534c
bestPath(10.1.1.15,10.1.1.13,52)
bestPath(10.1.1.27,10.1.1.29,25)
path(10.1.1.45,10.1.1.44,27)
bestPath(10.1.1.11,10.1.1.8,37)
b9455ef37afda1aa2934690b1c6a9df8282e9e46
14c42235253c4a0f6fdb486a87e37893882e6c6b
link(10.1.1.52,10.1.1.53,23)
bestPath(10.1.1.71,10.1.1.3,73)
6d80d00cdc2fc2500482bd4e282bc492fb6f0893
1698b3fa811b4d054cb2608407fd543829bf42f6
d2ccde35c6a3495acd0a4a82c5c98ab69dde584a
3cc78f45d62c2f77ddbc884925f3a6e6b8cb2797
path(10.1.1.74,10.1.1.53,80)
path(10.1.1.72,10.1.1.65,59)
path(10.1.1.10,10.1.1.11,67)
bestPath(10.1.1.73,10.1.1.24,60)
path(10.1.1.6,10.1.1.27,38)
e8675ff615e63e01534137098892054330101bb6
411480a161d33e77208cbd51c577204c4706394
path(10.1.1.71,10.1.1.65,45)
214796bfaa43638d3d24b10e048b8a1b14c5759a
6115880e41d68325f6828be5f4bb2ad597b6dc42
b7ecd1e5744d78166c9695ee77cb82e0f83e848c
bestPath(10.1.1.47,10.1.1.50,17)
68bab4bbb3e429e638e5214542a58650c8f10597
link(10.1.1.60,10.1.1.62,14)
105e2e8b1bb3b761a43d82c1f26fd44268d1f00e
path(10.1.1.72,10.1.1.61,73)
path(10.1.1.45,10.1.1.41,39)
d98409a6c1aa40a3fbc19117b8f0abdd4cf54ac7
link(10.1.1.7,10.1.1.8,22)
e0dde51120e3db89faa480003d1ebe3ff1cb1bdb
bestPath(10.1.1.6,10.1.1.65,27)
path(10.1.1.59,10.1.1.64,28)
cce3d948042e6e59bc9de9fd5bf2c29fb3ca7a80
281dd324191418893c221fe72ac3244685f33567
link(10.1.1.13,10.1.1.14,29)
path(10.1.1.4,10.1.1.37,28)
bestPath(10.1.1.10,10.1.1.9,47)
da7c93a9eb18d4bb3d1420c4e1c85eff4f782dbf
78e8586cc292a8e3baa070a8625ba7a79f91a203
56b3426de1082fedc1f93a347fdfea550e73fb79
da7277e20fad6471edcee2ead2bc52de523d5179
32aeb1c7250bb8a1c7b0b19ce9ff5544b30cf4e2
9daaf89eca800dd910468cebb4ede9827776ca60
4562158ed1210a339db19595af701dda334ad4a9
path(10.1.1.45,10.1.1.42,19)
363f81d5f63811c3c3709d9fcd019682d9dc8169
bdd53ba9f4440824ad33413f21c9048244bf4a30
d07146575587d93d9c564020c029f726303658d7
bestPath(10.1.1.55,10.1.1.53,29)
fefae574dd7200a961aff2bffe52715c70fdfad6
92fdd122b32e80eb8d044dd2676928ed4f851302
a38c0b3e8d7600c3a74554f8433b8aa52802d5e9
477d9ab51207c7b5fc72f2cde1cf0c85bed36c5e
path(10.1.1.57,10.1.1.18,92)
bestPath(10.1.1.4,10.1.1.6,6)
bestPath(10.1.1.4,10.1.1.53,21)
path(10.1.1.73,10.1.1.50,106)
bestPath(10.1.1.29,10.1.1.4,57)
path(10.1.1.43,10.1.1.45,20)
e268fddb2e265e25b16c976e078f56fd60b4f311
bestPath(10.1.1.46,10.1.1.37,62)
7215da82bc524153018499675f174ef5f8e47877
49e9fbb9bc243b2c1b9cfab6fbcba3ee4d058f8b
bestPath(10.1.1.27,10.1.1.4,32)
path(10.1.1.4,10.1.1.27,32)
425e242a41042ba2f47aedc6cff06e0466b97e7a
bestPath(10.1.1.2,10.1.1.15,35)
3f98307bcc24ea7b87a3358c72670dfaee69d44
41b778fd17dbc5b0152f0269ab3261629d55cfaf
bestPath(10.1.1.20,10.1.1.22,3)
path(10.1.1.44,10.1.1.43,29)
5e55d5df77c00f56c3de1ff203b951dc8a4a07b5
870b20568f9c21293242afff6eace70e37141fff
a485d0fa7a5250d8e427de0100d94ba99de520d9
cb2b171e4e2f29847747ea2971819bf5627c267b
bestPath(10.1.1.9,10.1.1.11,26)
d7b2dec156a99340b0337b8c9894006ddb00807e
bestPath(10.1.1.25,10.1.1.24,38)
2cf8acb35f3ef3bcfb9dcefc925f4ac5c6bd311
124b435323e43a9f5fdf86c8ad30a40a38f6eecd
3317a15fe481daf9a88054d89c981a16e0de5fa4
bestPath(10.1.1.70,10.1.1.27,47)
e1623685f26f804bdecd8bc958affa01cf3519d9
c402299e1ebc8181a6d7854f11482b3b077962cb
bestPath(10.1.1.34,10.1.1.24,43)
bestPath(10.1.1.30,10.1.1.24,52)
bestPath(10.1.1.42,10.1.1.44,8)
bd6de0777cfd58398c785fac0110ddd2e4b1a77d
78acc84dcaeae300d6bf6b04dd03c0a656788a0
path(10.1.1.43,10.1.1.20,71)
d6cafb0c8e19dfe9329f4bbab42f691e9e3c2e82
a4683196ee2f4f960b8e50f13546dec7fa19068d
link(10.1.1.16,10.1.1.17,21)
a95912da5c03c12bcfc62e61e8cc2f449450d068
path(10.1.1.73,10.1.1.68,95)
b2509a240a314b7f1e8237472de78219c24a478f
link(10.1.1.32,10.1.1.33,16)
path(10.1.1.71,10.1.1.61,59)
750c187cd0253223a92b4f3bdd13862bebc1b42e
path(10.1.1.74,10.1.1.68,75)
path(10.1.1.3,10.1.1.15,55)
c7b309554e9e9875a6ede940e52e07407248c12f
bestPath(10.1.1.24,10.1.1.18,53)
path(10.1.1.6,10.1.1.3,36)
dc8d13321da5b22fdba80e848f3348136f8cebe3
path(10.1.1.54,10.1.1.52,26)
path(10.1.1.43,10.1.1.44,29)
56fd08040adb2bc2b1ab58d833ece702b44346cf
link(10.1.1.1,10.1.1.9,31)
7cf70e0021ef8c892228d23e2d692c94c78fe0ae
bestPath(10.1.1.35,10.1.1.24,57)
bestPath(10.1.1.11,10.1.1.9,26)
bestPath(10.1.1.6,10.1.1.50,18)
bestPath(10.1.1.78,10.1.1.37,58)
bestPath(10.1.1.36,10.1.1.18,90)
e1abe42c34d7f86940572715888cff3085fb00a7
bestPath(10.1.1.54,10.1.1.27,57)
path(10.1.1.72,10.1.1.24,74)
path(10.1.1.31,10.1.1.34,1)
path(10.1.1.37,10.1.1.33,30)
path(10.1.1.59,10.1.1.61,7)
83352e68b95f74e829945b7ac2450b8ca8e59cad
path(10.1.1.6,10.1.1.24,46)
path(10.1.1.74,10.1.1.65,59)
2edee98a4739fafe16dc7831e31703225367e482
e2987177ad07eb73657ec1cad2c1ce1c98f34f67
path(10.1.1.73,10.1.1.24,103)
path(10.1.1.46,10.1.1.20,80)
link(10.1.1.59,10.1.1.60,27)
7f1c0a1860a94156fe40cd35d1e73fc082311dbc
2a4bafe6fec48da41a88b452647122c3da9aa2ef
link(10.1.1.59,10.1.1.62,22)
path(10.1.1.33,10.1.1.41,27)
bd949c38b527b7ae2630ef5cc1cf8a0e88052e16
bestPath(10.1.1.44,10.1.1.46,11)
path(10.1.1.9,10.1.1.11,26)
7462eee08b75423b09fb36be000fd097aca72f45
dd3def4121afa8f0a1a71fdf769dd91f62730eae
729f575187fc5db0448ceba5dcb14d9718513364
2b1d5636f612077a985017eaf2f5c37f45d16e7a
bestPath(10.1.1.31,10.1.1.34,1)
1364047cd9254498459c28611f192b5e6759cf8f
bestPath(10.1.1.65,10.1.1.61,32)
bestPath(10.1.1.41,10.1.1.18,79)
path(10.1.1.61,10.1.1.64,42)
path(10.1.1.74,10.1.1.15,92)
7f97eb9f934c031acca745340276a734724ce629
72b63347df387b0e46cfac6a4641fcd4a6217964
2a77e59825f90a81cb07290f48f7f7702df7023a
path(10.1.1.52,10.1.1.54,21)
cb4746d85021baea5e0fe1672fb5137c12b32155
path(10.1.1.5,10.1.1.37,52)
path(10.1.1.39,10.1.1.27,92)
7e9c9b4862140faf7614c6ad14ecff1e30cbab7
facca76eae7a22046917d39c754e211b0d5bb3a0
link(10.1.1.45,10.1.1.46,9)
fbf362e279761c2f30f640764f04d73568e79c96
5f6fce4ecd11a894efb6381210c46503a3096958
6f19ccd0eb4fe2ac282b796c0d96bfcd2390caf0
291c190a8771b743ed80ed9dd6d2effee4c4a882
path(10.1.1.3,10.1.1.18,56)
path(10.1.1.5,10.1.1.27,29)
24a3208696c067998d75d45065b9dd2aab686464
f3d6191706adb3f1fc496c82fbcf19f82f6d6093
bestPath(10.1.1.42,10.1.1.24,62)
eb120efd32c6df8eede727a97d86707d17dc64b
97ebc2150fba0d1aa3000569474c2eff8e50b390
path(10.1.1.37,10.1.1.20,70)
9fe1ac66dcdc36d383d6e33b5eacc8331e1ae373
570880fa1c907beeff51a13a2e80ad22e82806
8d837802101ac6911df59b88b5728e836bed9b3a
bestPath(10.1.1.74,10.1.1.53,80)
path(10.1.1.9,10.1.1.18,52)
f1c4947e106f0337b808d4dd29a3963d74af7b2b
315c9970cc21a2157c22b4ea0129358926ccf7e6
path(10.1.1.42,10.1.1.20,68)
2a106aceb2f0136136665f66210d0122e68c920b
bestPath(10.1.1.62,10.1.1.61,29)
c11503a1a4f2177fc96d5a0cc0d798f610df8956
16399fe030e64e074a0c62c6678d1a296406df97
bestPath(10.1.1.3,10.1.1.41,23)
a06b02aa222fd0c6e98dc6039d20ded58306c105
e4542f910b411dcfbaf919eff9ef6c80a296ceaf
path(10.1.1.74,10.1.1.55,88)
path(10.1.1.2,10.1.1.24,17)
path(10.1.1.54,10.1.1.3,65)
path(10.1.1.68,10.1.1.35,70)
link(10.1.1.40,10.1.1.44,17)
d1b7276f43e15464bc4bf1456647f5d2d97657af
cbd15e9198317e016034cda6105bb718fa42a7e7
path(10.1.1.55,10.1.1.27,40)
bestPath(10.1.1.3,10.1.1.4,2)
path(10.1.1.55,10.1.1.20,50)
91a5d8125d99890b14c4b15b7aa6f6d01a93cdbc
path(10.1.1.73,10.1.1.27,99)
f5cdd6f29b15f27ab26f8bef02d3886c8cc96b65
path(10.1.1.72,10.1.1.61,64)
310e3a5d1eb549e0ceb13f843eb8c89bcdadaaa7
bestPath(10.1.1.78,10.1.1.70,60)
a243e90df9fca9b6671aad06b92ad0c26b9ea68c
bestPath(10.1.1.55,10.1.1.58,32)
path(10.1.1.74,10.1.1.27,103)
7c571cbd100d232708ccd866ad34a9320e9d3203
bestPath(10.1.1.38,10.1.1.20,89)
ad20c4f22722e348046f803e6424b51964cf5e6b
1517bb8a02ffb9a012f217017dfbea7243ff2fdf
982399bee933da0fa30cdfd922e2fb3fe73def00
bestPath(10.1.1.37,10.1.1.35,45)
path(10.1.1.22,10.1.1.9,43)
bestPath(10.1.1.56,10.1.1.58,29)
d847a55871af149bea85cb9447e046edc3ab1ef6
bestPath(10.1.1.7,10.1.1.11,15)
bestPath(10.1.1.7,10.1.1.10,15)
d6ecfbbb552b188c4e408be747c10c8931acf6e3
aedf34748d40f23f3d93442d2431ff2e7352782d
e666d6e59ab627908c7ef5b535573a5f71133f70
path(10.1.1.11,10.1.1.20,110)
e9e0cc39ed6d111867ce947ce4839427225247ea
95e99a8314e4555bcc3acc339fc8ab33ab7236ca
path(10.1.1.6,10.1.1.15,48)
752433c109d75d03ef6aa82f8987ca5cb6dbc28b
path(10.1.1.78,10.1.1.41,55)
6996483e42076d775faf6a8f2da09f2cd048676d
f977003f5563c1dee6ff95cdfb266f2bba5ac5db
bestPath(10.1.1.24,10.1.1.3,38)
path(10.1.1.50,10.1.1.27,44)
eac5a2ff213c3efe48adaba109c3e7e77f2c4155
path(10.1.1.3,10.1.1.37,26)
5dea9ee62a6e4fb23508102fba3b9bce25ab036e
link(10.1.1.1,10.1.1.18,21)
1c7e2ea24954c3734b3cb471c1b0fa943bba7c9b
37155313a88254c7d00de65b9406ed907bb84d42
bestPath(10.1.1.65,10.1.1.70,27)
path(10.1.1.40,10.1.1.43,12)
path(10.1.1.19,10.1.1.20,14)
9211c04b55955316c0fd352a235c9bc3babe24d9
4d1689f92b634fc5a09dce9efe169ece4ea83d91
9d6ace2df6cc76a00b2bdf9998ac37663db04785
bestPath(10.1.1.43,10.1.1.44,11)
path(10.1.1.28,10.1.1.29,25)
path(10.1.1.46,10.1.1.18,92)
be59425d717387fc22830242334e7edd2c898f4c
6ddaee5819fb944334b4efd62e36bab359996e24
32ebeaf7098578d74dbdf429425457bd8dd3fea6
7a7b3a2514e32bf35ceee8fc6a4a10568c03e8e9
a4818b012a52c2374a62aa13199fa3af50d4249d
bestPath(10.1.1.8,10.1.1.11,12)
b2659576ae8f816b74735cc6b365abe52c17b71b
path(10.1.1.73,10.1.1.61,50)
6557fdd869093485f464ccb17d9bfeeef3e3d3ac
link(10.1.1.2,10.1.1.3,21)
path(10.1.1.39,10.1.1.41,70)
cca26c8ccef7a2478db293f99ca509e59ed16186
bestPath(10.1.1.64,10.1.1.60,55)
cc8183931d3be76e48771defb4960b592fed7faf
link(10.1.1.4,10.1.1.53,21)
bestPath(10.1.1.62,10.1.1.68,63)
dc7f1731ae632d68d6cb24c000baefbdcd2ca8c
path(10.1.1.6,10.1.1.50,18)
d2bd5bd0f9ae34f25c916aeba5564c1e8af7706a
path(10.1.1.4,10.1.1.41,25)
path(10.1.1.20,10.1.1.22,3)
bestPath(10.1.1.1,10.1.1.2,15)
88b423957e048f87671866f1a09e7f16a31d80be
d0042c4f1586dc792af1b7eb49325748a43af7a4
path(10.1.1.72,10.1.1.53,95)
3ca69eea8fe96220e4f5bd0d6dd594c665477df9
bestPath(10.1.1.42,10.1.1.27,58)
path(10.1.1.11,10.1.1.18,78)
fdbf8e7541430eb143c1dad672ae38a5f5664569
b2eaa083476fb8064833d312c5827478267a2b35
c07311d30f34e4b087ec005d83ad45b4274749ad
9762aef33c10cafd750f03ea0d934fd7c01b01cf
bestPath(10.1.1.29,10.1.1.30,42)
ffbf24a8b41f15c5592a410e5e4094d2de75f4c2
path(10.1.1.43,10.1.1.42,23)
3140075553d4c89b2e7f3416f545c602973237e9
path(10.1.1.2,10.1.1.27,13)
path(10.1.1.44,10.1.1.41,28)
3526a03145251924d3c1d99076d799e029fa83b1
e8829d32ec198273bc4ed697586f168dc03c2f7
path(10.1.1.38,10.1.1.39,13)
path(10.1.1.28,10.1.1.30,51)
bestPath(10.1.1.42,10.1.1.41,22)
bestPath(10.1.1.34,10.1.1.41,28)
bestPath(10.1.1.54,10.1.1.52,26)
path(10.1.1.57,10.1.1.58,62)
bc60d2c735e16ae574b129e098a9630ce74dcf3c
path(10.1.1.48,10.1.1.49,19)
b7a8815e778c526d0004282fc54e74e051288eae
6338229ab3500695b0949ef087c999ae38bb0900
path(10.1.1.25,10.1.1.4,65)
path(10.1.1.54,10.1.1.5,49)
1e8a653ef3bf0c813d58caa8b570c7ecbe808b7a
1c51c79104ca479c604015d4635f2c9126dddc5f
6db7894b9283ff9388e36e1bac6ffaa217d65c78
b5d61ce8207465fbadf3955d49ff085dd598ab75
175561e8549e23cdff02d7fb2728447c12e195da
efaa77bed86bdb5164a44982d13bbbbbf956d761
48f93958ef772ef298adeaa49093fe50ac304ce6
path(10.1.1.46,10.1.1.41,34)
path(10.1.1.10,10.1.1.18,93)
bestPath(10.1.1.61,10.1.1.70,41)
path(10.1.1.53,10.1.1.54,7)
bestPath(10.1.1.58,10.1.1.56,42)
f96ff698108f1b1e6c272e2368eec63f5fd29f29
89f57eacb5bcf6e3bb38615f6a71678c6a3fd08e
path(10.1.1.55,10.1.1.57,30)
bafca3ec7478995561a385e8434d72ed9e2656ef
60763d18eb3afb325f2311c80a579764a152e068
d53885faa580b0468729ce89b423d7845a6c9d09
c4aa26f3f97eb2207b8c9244740628a6cc285f13
8d486db2fe52d95904cb0909d2e3cf5d488e2c60
11ee2a50b0d7d4e1174de1073070100e66fcec47
86e8b41e33f658d8d91f8f063386d8eae75a5342
link(10.1.1.47,10.1.1.49,30)
path(10.1.1.44,10.1.1.24,74)
437dbae497eea4426af821c946fce88075cd17d2
ff4a36744355cd5524febe15980d98d0ad8c4fd4
2ff5bb78c52a672dcff08b484839d171f35f72ee
842ea21a282802de448ca92d19817a348d21f29
4b8de38522a4d4de0c0be9eceab6c817ebc5e887
bestPath(10.1.1.34,10.1.1.37,31)
de7943584330a221233cd1ac8f21f22d13fbc13d
path(10.1.1.73,10.1.1.18,107)
bestPath(10.1.1.43,10.1.1.27,59)
836d5c5898398e87ec42455e4221a2216bf950fb
2a9489d87765e74524b784680363503537e6100a
9aa839e150097459101b0f6fd2b29ae6a4a7c537
path(10.1.1.27,10.1.1.30,50)
bestPath(10.1.1.43,10.1.1.18,81)
ee7b87fb3923ae263a8293e0ae8140bdabca829a
bestPath(10.1.1.3,10.1.1.35,19)
bestPath(10.1.1.40,10.1.1.42,11)
path(10.1.1.6,10.1.1.68,43)
210d98e39ed3ecce88305973e422963f663cffca
bf509111ddcd77ee1e427057665b23b7a4ea1fbd
eb906ad01f2b87cb800e47e90d1bfcdea4d76229
4af7002b864bf8c4ba74ff1b9e0084dd27eac7a5
a39cb5f31560a68f0672094bfcea7337bd821034
3e00168815f738fa408f425341ad5ca6b0dceb0c
bestPath(10.1.1.8,10.1.1.9,14)
746a605876a75e948a453bda681d744975e23023
73c6338535865f6c4590e83500d1b783c536169c
fd92453bd030989710925a376a917c5c39554f5e
ce2fc72148fc5c13a816e9d475c28993e6734a7d
f7680d43f43494843c68abf781c818b3df1d52a2
ac33a064fe8cd1cabd2a480b12d319ce62d37417
link(10.1.1.3,10.1.1.4,2)
a83c9f345fc3e4320d253692b5954d85415a1b02
path(10.1.1.54,10.1.1.27,57)
path(10.1.1.26,10.1.1.30,35)
1d8b211f012bbb9ebbfd6c118d29d03edb344779
3ca4d99d83207fe86c92124ed9c83d5c43be498d
210f1cd6f742e3f3bb3c659301087577faac75bf
9f1455c39b9ce4f33dc84e05614e5f9804bcbf12
bestPath(10.1.1.38,10.1.1.33,49)
2841099cd02e18e1e8927b943045467fd6600451
8c61580149eb346c7b14cebdabb55ef9a7de6697
path(10.1.1.74,10.1.1.55,67)
6f104c9f123f28a600ff4dcfd963c1556d5742f4
b3c6e8e89990adea01f59af59ba53004bd514db9
bestPath(10.1.1.10,10.1.1.20,81)
path(10.1.1.74,10.1.1.15,86)
28e623c429e4d50ab2ed9838a24e0a1a5669d63a
68bba90f316fab09599ae342c7c4fd7d625b86ab
path(10.1.1.6,10.1.1.3,46)
aca98a5f7d41220588af7a06aab6941d9ad97221
3efd2c384ab6b22697b673dad5c31e76b1f453e6
path(10.1.1.54,10.1.1.55,33)
ab8b05006c5335647ec546efd2acba9d4d56afa0
path(10.1.1.12,10.1.1.14,19)
bestPath(10.1.1.52,10.1.1.54,21)
b7125726b9930d7fdfd95137145e82feff8a3586
link(10.1.1.1,10.1.1.15,20)
9aa3dfc353469c65c9d14e2578a55946c03c0066
bestPath(10.1.1.57,10.1.1.15,91)
765483cb63af8816d4746a3050ff13660dd1bd41
path(10.1.1.46,10.1.1.45,28)
f7bf6ab4c746ee05fa4cfb5f05342084f801a9bc
58f331516ed04953fd04842260df892eeeedce82
240a66257673225240e537574bacc0b75a33d026
path(10.1.1.53,10.1.1.55,29)
path(10.1.1.53,10.1.1.27,53)
bestPath(10.1.1.3,10.1.1.6,8)
bestPath(10.1.1.74,10.1.1.15,71)
bestPath(10.1.1.22,10.1.1.20,30)
13d38af2bd9182a20f3d90fe01f58dc9b952b3b5
path(10.1.1.28,10.1.1.3,38)
bestPath(10.1.1.50,10.1.1.53,33)
b3be9cae891f760845a5698bf3b5d3235e38573
path(10.1.1.74,10.1.1.24,83)
path(10.1.1.28,10.1.1.30,26)
e8d195bfc80d677a57d981d14273f4bfa946ba1
7fcdbff7079764bf3729ef4a5dc3819e954590a4
3534688f755ad35f2c9deddaf2b973a2b361f569
5044f212f908bd6ef4483fb9a2c7ffd48aebb0f9
link(10.1.1.28,10.1.1.29,25)
c6020719774268a95cea8d935ffff33e06bfb245
path(10.1.1.10,10.1.1.9,49)
path(10.1.1.44,10.1.1.27,66)
path(10.1.1.39,10.1.1.27,81)
3f1c54505bc6f41ea30a43f7ad33206080afa804
7df65416e4db5df115951d05812dac9cc10dde0d
fad3e957d7c9e42b7f497efc3ebc63d8cc960508
408e02dbd3dcebd035ecd7987092f086785c5095
530605bb0f12573638d1ab43523a4dfc1292aad3
path(10.1.1.11,10.1.1.10,67)
f731f31ae984670a27fc1e82550105d4a0c596dd
d4ab9b416385f08c7ae0a523b66e63bbd0ac04bb
path(10.1.1.55,10.1.1.53,29)
path(10.1.1.38,10.1.1.39,40)
f9ddfd522757709f22253910e543c6d14d5c449a
bestPath(10.1.1.57,10.1.1.24,74)
path(10.1.1.73,10.1.1.55,102)
path(10.1.1.45,10.1.1.43,21)
1623da029b18f57838dd1ce7d2b3ba337f7df3f6
bestPath(10.1.1.36,10.1.1.33,38)
342135bdb0833a7d6bf92f4449efa3f284ea2696
bestPath(10.1.1.42,10.1.1.45,18)
path(10.1.1.1,10.1.1.15,20)
path(10.1.1.9,10.1.1.11,49)
ac813158f270568d1bc38a09261362eea85e16dd
path(10.1.1.70,10.1.1.18,55)
316b4e3563aeae17fb431d00677035c4bf9a8dea
283562b1815f6e379a53e1bc092501a008f5057e
a66290d5d5e412c7c2092d47b5feb1921acb4ed9
d0151ba4f0d00d381d3722dbc6a135ee264a80b3
bestPath(10.1.1.4,10.1.1.55,8)
584a5937ce03c76a3d5505341b3d018494fda977
e4df02845bf8fff05bcbe099e8a7f29f5dc473c7
path(10.1.1.73,10.1.1.27,56)
3fb4a24593f1235d74732cc6a229d1dc06fb967f
3a6ee5fb58c45e93a48244b49fac1838b5955100
bestPath(10.1.1.61,10.1.1.65,32)
path(10.1.1.5,10.1.1.61,23)
path(10.1.1.42,10.1.1.18,80)
path(10.1.1.47,10.1.1.48,13)
2205b01fd5903704fcb357e08d8131bfba82ba60
81ab0bfaf5b51ad7b45055489633b0d782c792e2
link(10.1.1.9,10.1.1.10,41)
path(10.1.1.9,10.1.1.10,47)
13ab7f68886d8b2c5109f023468ce8ae3471aed1
5a69a27afa62f994c7e3bb7d61cde32d5f819de7
99ee15aeb4f65d3f2e24840f1bf5a0349d8edd6a
path(10.1.1.17,10.1.1.18,39)
bestPath(10.1.1.23,10.1.1.25,22)
a2bc47ad01c9157f6f39e76dc310a8085dd5aa09
47d0ccf512071925717483567378ed0850574a58
74c516beee7ca63ba12124866c66466dbbb08d43
247f79d037aa92f9ed60e57356f367980274e180
cd1a0c8176332fd89d4519f80a4929d1b5bed729
139a23675ac90642324e113b35e679d12157edb6
ab1e59068fc74e4ba7f7f836dada71a3cfb34d1a
8ab7fe93a13a8c59d61ff4edfcb42187349e1a2c
8628e96b758ae16165a852069571db1e8d5b640c
path(10.1.1.64,10.1.1.68,71)
path(10.1.1.1,10.1.1.4,33)
ff3310b9975855327ff7544f82cb2997593898c4
6000814ae20b3f26c843c07d93d96d481df0e2e8
5d87b6c7ad61b47975d3f0822d41b87d8dc69bed
bestPath(10.1.1.37,10.1.1.18,82)
35bac550e57b0bd3fb5e3738b195f007b7b60d7c
40b5c4a729a66a2be0cdb2f6accbc8538ad55c08
769df829c63459ad6951a4dfea0e7df5b94b4ca1
path(10.1.1.1,10.1.1.3,35)
9a0e572f37c173e656bede100174eae7dd1a0dc8
bestPath(10.1.1.38,10.1.1.41,68)
bestPath(10.1.1.73,10.1.1.68,52)
path(10.1.1.8,10.1.1.10,37)
7024a078b0dce42fc9cc8780a85926c3b9aef08f
89d7c8b537d88ee2f387ad2bfb89453f5cfa5a58
c9386aef7c75b4bae8b3aa3202c03cd4d38b9687
path(10.1.1.33,10.1.1.27,38)
path(10.1.1.60,10.1.1.61,23)
e92363b6d0b01b7c2d3a4ff44490e5c0c6fa04
ee1c69ca90cf032081fbb6d5bf60e044db1529ae
7080ae23c37deb982b532a5cfec089be55fc01cd
bb1d27f9a242db285432e2fe0eb05bdc306144
bestPath(10.1.1.41,10.1.1.44,9)
bestPath(10.1.1.41,10.1.1.15,78)
path(10.1.1.61,10.1.1.63,14)
fd46c36295265d7e139ef89c707c65109c70f73a
ecfaa70e9bdfc7bd2300125ff4fa9e5e5b9721a
cdd0deb690c273be486753d7751466167ce9ab28
path(10.1.1.4,10.1.1.15,53)
70b37df1c59703b2e2d40cc180b23c61553e74b3
ebfa896ba0593d4a137ecc7f1e986aa2a9538b10
5a1ec4fdb1ae7e46978acdf5e7e2962964550281
bestPath(10.1.1.2,10.1.1.4,19)
bestPath(10.1.1.30,10.1.1.28,26)
59ca95fd7c1705f5eb16769afe561c247e29afe8
3b0ddf48413d473a01c8044e590e18020f833a6
eccecab04ca6a5c6060f01e64d500b79ca4fb361
path(10.1.1.45,10.1.1.46,9)
path(10.1.1.13,10.1.1.14,29)
link(10.1.1.43,10.1.1.46,12)
e785aa38c4fc953629f02bef08c2c83f9e3d2421
bestPath(10.1.1.20,10.1.1.9,40)
path(10.1.1.46,10.1.1.43,15)
dbf4c2e82a6d1e785d9ec55c826fda8e8a42078a
path(10.1.1.5,10.1.1.50,36)
c58eeb7ba05347cee4a892a5edcb40c537d8b2b3
bestPath(10.1.1.22,10.1.1.15,32)
5bbf95dd1c63b0da6ae251fc6dd75cb25239b243
bestPath(10.1.1.49,10.1.1.50,13)
ea13a43cb2425541381eb798fafb7f93d151b2cd
bestPath(10.1.1.68,10.1.1.61,48)
path(10.1.1.46,10.1.1.43,29)
77c62502dcfbd993cee702b204da2a95d7eb4f96
33dff5d6abb8b6b9ed48070bb53caf8dc0213e3c
e8448b237061f297fb0b8dc7b8693af837d4eccd
588b467ce74a6af2c70ebafe7cdd26143ac0f6c7
bestPath(10.1.1.6,10.1.1.18,49)
bestPath(10.1.1.13,10.1.1.15,30)
52c042baba459e5053a467d28eedeff1f1fbf417
path(10.1.1.62,10.1.1.68,63)
path(10.1.1.44,10.1.1.20,80)
bestPath(10.1.1.5,10.1.1.20,25)
link(10.1.1.26,10.1.1.28,16)
d2f537592546b330ded2bca3d0f2f1b06bccc8b
bestPath(10.1.1.54,10.1.1.20,67)
322a1e97dfce2824b328acdc9814226a2145e5a
5d258c45ad947579c0107f4ffc6e1750044b5809
67ac2bed5323299b86376c6fe432963670f8f03e
69debf9057968808c4c8b357f24e1db7eedde0be
1538126c577915981150bf477dcb02795111468c
972da777d33f8d23622d00758afaede3acd7ecbe
path(10.1.1.11,10.1.1.9,76)
8a3d0054481908c3c761853e8049b40579c25309
21bf4930d52c8aa531bcf764b9bf660a94b2c7c8
cb67c855e33540f2c2b238dc815750192474030a
link(10.1.1.5,10.1.1.70,18)
b8197235deff0e6e57ef505f26a890fad93a7012
d1cb7e88277a31d2a27a82d2287d1374e0455507
bestPath(10.1.1.33,10.1.1.41,27)
808a7d3a1a0b22cfb0c0266690b016f9d7fcaade
c8675127ac8e696a1424ca438e1619a872ff6335
8bc10a32369844b8896a807ec6b9ab113de5c54
ea28be716b8a897b381faf72125ee39195d7c715
79c681d42a689536262215f8d4f8e40b6061b0df
5f1bd9ec2ad570b3504a171ff9e04a29b4921b1a
path(10.1.1.20,10.1.1.15,29)
baec51e8b705fde646b91af476f9bbad47f0c5b2
8b1da2bec7270eb4d833cfd51b7e9030b3c7db58
8c7034f54fc4c62755a7cca6bfae6e3fe0107644
be02228238d895909ef444015420eec0848cded7
ba9eaffe3321c6bc64569cacc688a0306d62a68a
path(10.1.1.28,10.1.1.30,20)
a7f767e19e99e2312e13e31b991fda989447af16
path(10.1.1.20,10.1.1.9,40)
path(10.1.1.30,10.1.1.29,45)
a889417079fde9c5568ab0f2486b54a0219934d5
bestPath(10.1.1.6,10.1.1.78,24)
path(10.1.1.38,10.1.1.33,49)
path(10.1.1.6,10.1.1.15,54)
bestPath(10.1.1.68,10.1.1.37,77)
bc880bb60d8692c7b7e8aaf27e018cac4114c218
path(10.1.1.46,10.1.1.24,81)
6b76e6ff7f3909c38384bd4692c23f7fb20d66cf
1608d4af0b5a02e8cefb65fec01b26a936193068
e80fe4c3219080f3277160f0db08c8c4f3a8a924
bestPath(10.1.1.74,10.1.1.68,60)
4f9e53bdc7edefdc12602ef549b4d22d811f4ba6
path(10.1.1.46,10.1.1.15,98)
link(10.1.1.29,10.1.1.30,42)
608a56c6d5a4dc2b210e9f7e7c2e7dd3822ed7f
687784607d2811f5dc926cb2a25e5c2918dc99b5
7ce4c4965b5ddf7f4ad92098b15662aa874a4e32
af9a5464542c4161ef463bab8c9fdc4f1862863e
5265c0b3d2cf2e16de2099692d111fae8c870951
path(10.1.1.11,10.1.1.10,30)
bestPath(10.1.1.46,10.1.1.18,92)
7210bc01c712d9a6b2bd55239fbafa40db667dc7
bestPath(10.1.1.11,10.1.1.15,77)
path(10.1.1.7,10.1.1.8,22)
1f75398608ff4f6c5f50edfe12bd75cdf7366518
link(10.1.1.7,10.1.1.9,34)
8677597d6b3530ae6f5391f67940a73ebe34c9b3
29e793dd8bcd22af479ed5ec0b7f0906e204f480
path(10.1.1.62,10.1.1.63,29)
bestPath(10.1.1.40,10.1.1.41,11)
path(10.1.1.63,10.1.1.61,45)
4b29c3624c825bf644e1760f8d91494364ada3e1
3021b199376b47735d3cd1914c228a2b0d60ed6b
cd1f4db650f964f439c0f40e3bdf1a848fe60b53
path(10.1.1.68,10.1.1.27,54)
98bcd1cb9765e6f39ccb2d1d563c2e100cd6af8e
bestPath(10.1.1.21,10.1.1.18,38)
cb58e8b9977e23d4fd1fc7bab9a535052df5fd53
bestPath(10.1.1.57,10.1.1.53,59)
path(10.1.1.72,10.1.1.68,66)
path(10.1.1.51,10.1.1.52,21)
path(10.1.1.41,10.1.1.20,67)
path(10.1.1.25,10.1.1.24,38)
e2e9742545af8c199d234b140ae65f7837b36676
bestPath(10.1.1.43,10.1.1.24,63)
bestPath(10.1.1.27,10.1.1.30,22)
9668013ff6083d1ca8c6b86e1e855eef7782bc4d
path(10.1.1.30,10.1.1.24,52)
bestPath(10.1.1.5,10.1.1.18,37)
daaa178e33c1cdf1e38b57bb450c88256a3467a
89fe4459a16b5e82b83dc9872c30db27de732803
d0572591a6e283d68f6a096bac86dc5743fb9beb
947a6edac89427e382c12dec054af88f1909ea0
f5751fe1b3c275dd346bfff32c9be1f5d3e37e01
path(10.1.1.5,10.1.1.15,51)
1f22f119384e3cd577aff8d9ece1200b31b2f356
path(10.1.1.22,10.1.1.21,32)
3fa789acb1f5a9e0cfd21fa32d0cd7848386cd12
bestPath(10.1.1.3,10.1.1.5,26)
bestPath(10.1.1.5,10.1.1.6,18)
5ba03aad05f34c6d26b429459e97fcfa3cfe374d
bc750667622d55704194a3f5eec10ce23b20a355
130e7a44aa74141aa08257f6aa71c2c8ddd3c7be
path(10.1.1.58,10.1.1.57,64)
path(10.1.1.46,10.1.1.15,91)
path(10.1.1.28,10.1.1.29,29)
3fdac2c12ee5655773c40593e0a1fa8a899605cc
1bebb9dfd8a4b7966dc2517a53f802b16437cf45
path(10.1.1.78,10.1.1.24,56)
path(10.1.1.45,10.1.1.46,30)
94c412ab1adf38545f7fa7b6fd6f2cbc9ffb481c
6a72e2066d0196914d99741862a1b7330199540a
bestPath(10.1.1.37,10.1.1.15,81)
bestPath(10.1.1.36,10.1.1.27,68)
38bb01011b8b1348ac523c6275e7bda474caf74c
bestPath(10.1.1.54,10.1.1.50,37)
path(10.1.1.46,10.1.1.24,74)
d7766f194e99915247a33308c9f92a5d69e0a698
fb9392d72f1866e23b33db4292740eb0556605a2
path(10.1.1.74,10.1.1.65,65)
57c47e03b16324664d25f245637a3a21a38640d8
23e4aa52f13836b39398febafbac575407e4989a
path(10.1.1.20,10.1.1.22,30)
path(10.1.1.5,10.1.1.15,36)
3093692ae13947bc0d5ef8ce533a4698f6917a37
path(10.1.1.46,10.1.1.45,31)
bestPath(10.1.1.6,10.1.1.35,27)
9e5b41d75975f818efa7b5f039bb95ce65ad6d70
b0dea97f085db201d747dfd09e53cceaa27092d9
a7feb5256c08b8bec4f1a747a2cb490e09a018fe
path(10.1.1.39,10.1.1.35,66)
path(10.1.1.41,10.1.1.44,28)
7a0ab474df36158368ee6f679328eff70c82bd8
path(10.1.1.78,10.1.1.70,60)
51b4f04d9c7349d7654b12206b5db44fb7188d99
c2f88418d31b90ced77887f8c2f25ce7185a32ba
path(10.1.1.43,10.1.1.24,65)
path(10.1.1.47,10.1.1.49,30)
bestPath(10.1.1.2,10.1.1.6,15)
d4558b8a6251eed74fef8fa9adc896c717c2c4ea
path(10.1.1.5,10.1.1.18,37)
175c0c111c27c573bb9cd96e1a98763028517fab
2aa828ebf5c2af3768feb021c085d046efaf822d
bestPath(10.1.1.46,10.1.1.45,28)
d2d85f784c32fcef050beca28b32990c029a806b
path(10.1.1.44,10.1.1.45,27)
path(10.1.1.5,10.1.1.35,45)
bestPath(10.1.1.8,10.1.1.10,33)
b3260e8f9684b322597ece78211f0b3008addd0d
3b2973971dc3887373be616b495ee42db8d990d0
path(10.1.1.63,10.1.1.62,39)
path(10.1.1.64,10.1.1.65,55)
2b4eb5db8f5944ea7da617783ed7927435561a5e
5248d2326ec7f64e85401b710b79d99851804b97
bestPath(10.1.1.56,10.1.1.57,35)
36a5f60b442cd42bb676282c748089ebe5b49384
path(10.1.1.74,10.1.1.24,68)
path(10.1.1.3,10.1.1.27,34)
path(10.1.1.32,10.1.1.33,16)
29271305a7b82e20e9ef193b90f355f7a41c4176
2fdfe0d4a0c37423f3b8cba5eff8c2923410995e
d055ec47740e84ef5ac7ccc5a79c6434b6e4f0f7
path(10.1.1.5,10.1.1.53,45)
7c38371d842b55b14a80e9a211caaeffb54d9b4c
cd provenancemods/rapidnet_v0.3/
source ~/py33/bin/activate
cd examples/
emacs mincost-query-test.cc
cd provenancemods/rapidnet_v0.3/
source ~/py33/bin/activate
cat modified_prov_graph.txt
cat output78.txt | python import_modify_graph.py
python2 ./waf --run mincost-query-test
emacs tuples2.txt
python2 ./waf --run mincost-query-test
emacs tuples2.txt
python2 ./waf --run mincost-query-test
cat tuples2.txt
emacs tuples2.txt
python2 ./waf --run mincost-query-test
emacs tuples2.txt
python2 ./waf --run mincost-query-test
emacs tuples2.txt
python2 ./waf --run mincost-query-test
cat results.txt
cat tuples2.txt
emacs tuples2.txt
rm tuples2.txt
touch tuples2.txt
emacs tuples
emacs tuples2.txt
python2 ./waf --run mincost-query-test
cat results.txt
python2 ./waf --run mincost-query-test
cat results.txt
emacs tuples2.txt
python2 ./waf --run mincost-query-test
cat results.txt
emacs tuples2.txt
python2 ./waf --run mincost-query-test
emacs tuples2.txt
python2 ./waf --run mincost-query-test
rm tuples2.txt
emacs tuples2.txt~
emacs tuples2.txt
cat tuples2.txt
rm tuples2.txt~
cat tuples2.txt
python2 ./waf --run mincost-query-test
emacs tuples2.txt
rm tuples2.txt
touch tuples2.txt
emacs tuples2.txt
rm results.txt
touch results.txt
python2 ./waf --run mincost-query-test
emacs tuples2.txt
python2 ./waf --run mincost-query-test
cat results.txt
emacs tuples2.txt
python2 ./waf --run mincost-query-test
emacs tuples2.txt
python2 ./waf --run mincost-query-test
cat results.txt
emacs tuples2.txt
python2 ./waf --run mincost-query-te
python2 ./waf --run mincost-query-test
emacs tuples2.txt
python2 ./waf --run mincost-query-test
emacs tuples2.txt
python2 ./waf --run mincost-query-test
emacs tuples2.txt
python2 ./waf --run mincost-query-test
emacs tuples2.txt
python2 ./waf --run mincost-query-test
rm tuples2.txt
touch tuples2.txt
emacs tuples2.txt
python2 ./waf --run mincost-query-test
emacs tuples
emacs tuples2.txt
python2 ./waf --run mincost-query-test
cat results.txt
rm tuples2.txt
touch tuples2.txt
emacs tuples2.txt
python2 ./waf --run mincost-query-test
emacs tuples2.txt
python2 ./waf --run mincost-query-test
cat results.txt
emacs tuples2.txt
python2 ./waf --run mincost-query-test
emacs tuples2.txt
python2 ./waf --run mincost-query-test
emac tuples2.txt
emacs tuples2.txt
python2 ./waf --run mincost-query-test
emacs tuples2.txt
python2 ./waf --run mincost-query-test
emacs tuples2.txt
python2 ./waf --run mincost-query-test
emacs tuples2.txt
python2 ./waf --run mincost-query-test
emacs tuples2.txt
python2 ./waf --run mincost-query-test
cat results.txt
emacs tuples2.txt
python2 ./waf --run mincost-query-test
cat results.txt
emacs tuples2.txt
python2 ./waf --run mincost-query-test
cat results.txt
emacs tuples2.txt
python2 ./waf --run mincost-query-test
cat results.txt
emacs tuples2.txt
python2 ./waf --run mincost-query-test
cat results.txt
emacs tuples2.txt
python2 ./waf --run mincost-query-test
cat results.txt
emacs tuples2.txt
python2 ./waf --run mincost-query-test
cat results.txt
emacs tuples2.txt
python2 ./waf --run mincost-query-test
cat results.txt
rm tuples2.txt
touch tuples2.txt
emacs tuples2.txt
python2 ./waf --run mincost-query-test
cat results.txt
emacs tuples2.txt
python2 ./waf --run mincost-query-test
cat results.txt
emacs tuples
emacs tuples2.txt
python2 ./waf --run mincost-query-test
cat results.txt
emacs tuples2.txt
python2 ./waf --run mincost-query-test
cat results.txt
rm tuples2.txt
touch tuples2.txt
emacs tuples2.txt
python2 ./waf --run mincost-query-test
cat results.txt
emacs tuples2.txt
python2 ./waf --run mincost-query-test
cat results.txt
rm results.txt
touch results.txt
rm results.txt~
ls
cat modified_prov_graph.txt
cat tuples2.txt
rm tuples2.txt
touch tuples2.txt
rm tuples2.txt~
ls
emacs tuples2.txt
ls
rm output78.txt~
rm tuples2.txt~
rm tuples_to_be_deleted.txt~
rm tuples_to_deleted.txt~
ls
rm tuples.txt
rm tuples.txt~
ls
cat tuples2.txt
ls
python automatic.py
cat results.txt
rm results.txt
ls
touch results.txt
cd provenancemods/rapidnet_v0.3/
cd examples/
emacs mincost-query-test.cc
cd ..