-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnewMarkers.json
1614 lines (1614 loc) · 43.2 KB
/
newMarkers.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
{
"markers": {
"marker": [
{
"number": "1",
"id": "1-ETH",
"device": "MINDSONG",
"lat": "40.364",
"lng": "-74.656",
"state": "Princeton, NJ, USA",
"contact": "Roger Nelson",
"start": "1998-08-02",
"comments": "was PEAR to 010810"
},
{
"number": "2",
"id": "37-ETH",
"device": "PEAR",
"lat": "47.079",
"lng": "7.062",
"state": "Neuchatel, Switzerland",
"contact": "John Walker",
"start": "1998-08-02",
"comments": ""
},
{
"number": "3",
"id": "1245-ETH",
"device": "ORION 245",
"lat": "40.35",
"lng": "-74.659",
"state": "Princeton, NJ, USA",
"contact": "Roger Nelson",
"start": "1998-08-04",
"comments": "was PEAR to 020822, MINDSONG to 090717"
},
{
"number": "4",
"id": "112-ETH",
"device": "MINDSONG",
"lat": "47.079",
"lng": "7.062",
"state": "Neuchatel, Switzerland",
"contact": "John Walker",
"start": "1998-08-10",
"comments": "was 1003"
},
{
"number": "5",
"id": "33",
"device": "PEAR",
"lat": "35.989",
"lng": "-84.225",
"state": "USA Knoxville, TN, USA",
"contact": "Greg Nelson",
"start": "1998-08-26",
"end": "XXXX-XX-XX",
"comments": "OFF; Packets offtime"
},
{
"number": "5",
"id": "34-ETH",
"device": "PEAR",
"lat": "40.4",
"lng": "-74.6395",
"state": "Rocky Hill, NJ",
"contact": "Greg Nelson",
"start": "2001-05-11",
"end": "XXXX-XX-XX",
"comments": "OFF; Packets offtime"
},
{
"number": "6",
"id": "1000-ETH",
"device": "ORION",
"lat": "52.35",
"lng": "4.867",
"state": "Amsterdam, The Netherlands",
"contact": "Dick Bierman",
"start": "1998-09-02",
"comments": ""
},
{
"number": "7",
"id": "1005-ETH",
"device": "ORION",
"lat": "37.783",
"lng": "-122.455",
"state": "San Francisco, CA, USA",
"contact": "Steven Foster, Jim Fournier, Doug Piercy, Rob Miller",
"start": "1998-10-14",
"end": "2007?",
"comments": "Changing to Gosney"
},
{
"number": "8",
"id": "1021-ETH",
"device": "ORION",
"lat": "37.365",
"lng": "-121.967",
"state": "Santa Clara, CA, USA",
"contact": "Mike Cheponis",
"start": "1998-12-15",
"comments": ""
},
{
"number": "9",
"id": "1022-ETH",
"device": "ORION",
"lat": "52.274",
"lng": "10.528",
"state": "Braunschweig, Germany",
"contact": "Reinhard Caspary, Udo Unrau",
"start": "1998-12-23",
"comments": ""
},
{
"number": "10",
"id": "1023",
"device": "ORION",
"lat": "35.981",
"lng": "-78.915",
"state": "Durham, NC, USA",
"contact": "Richard Broughton",
"start": "1998-12-29",
"end": "XXXX-00-00",
"comments": "OFF"
},
{
"number": "10",
"id": "1029-ETH",
"device": "ORION",
"lat": "35.981",
"lng": "-78.915",
"state": "Durham, NC, USA",
"contact": "John Palmer, Bob Bourgeois",
"start": "2003-02-03",
"comments": ""
},
{
"number": "11",
"id": "101-ETH",
"device": "MINDSONG",
"lat": "55.95",
"lng": "-3.167",
"state": "Edinburgh, Scotland",
"contact": "Paul Stevens",
"start": "1999-03-16",
"comments": ""
},
{
"number": "12",
"id": "103-DD",
"device": "MINDSONG",
"lat": "30.306",
"lng": "-97.751",
"state": "Austin, TX, USA (was San Antonio)",
"contact": "Gary Heseltine (was Rick Berger)",
"start": "1999-03-19",
"comments": ""
},
{
"number": "13",
"id": "102-DD",
"device": "MINDSONG Win98, 200101",
"lat": "48.217",
"lng": "16.367",
"state": "Wien, Austria",
"contact": "Peter Mulacz",
"start": "1999-04-17",
"comments": ""
},
{
"number": "14",
"id": "100-ETH",
"device": "MINDSONG",
"lat": "-17.75",
"lng": "177.45",
"state": "Suva, Fiji",
"contact": "Robin Taylor, Simon Greaves",
"start": "1999-04-27",
"comments": ""
},
{
"number": "15",
"id": "110-ETH",
"device": "MINDSONG Debian",
"lat": "39.02",
"lng": "-104.75",
"state": "Black Forest, CO, USA",
"contact": "Bdale Garbee",
"start": "1999-04-30",
"comments": ""
},
{
"number": "16",
"id": "109-ETH",
"device": "MINDSONG",
"lat": "33.527",
"lng": "-117.704",
"state": "Laguna Niguel, CA, USA",
"contact": "George deBeaumont",
"start": "1999-05-02",
"comments": "OFF; lost contact"
},
{
"number": "17",
"id": "106-ETH",
"device": "MINDSONG",
"lat": "43.171",
"lng": "-77.562",
"state": "Rochester, NY, USA",
"contact": "Ryan Tucker",
"start": "1999-05-21",
"comments": ""
},
{
"number": "18",
"id": "115-ETH",
"device": "MINDSONG",
"lat": "53.5",
"lng": "-113.5",
"state": "Edmonton, AB, Canada",
"contact": "Ed Boraas",
"start": "1999-05-21",
"end": "late 2010, early 2011",
"comments": ""
},
{
"number": "19",
"id": "107-ETH",
"device": "MINDSONG",
"lat": "48.03",
"lng": "7.833",
"state": "Freiburg, Germany",
"contact": "Jiri Wackermann",
"start": "1999-05-28",
"end": "2002-02-28",
"comments": "OFF"
},
{
"number": "20",
"id": "114-DD",
"device": "MINDSONG",
"lat": "13",
"lng": "80.183",
"state": "Chennai (Madras), India",
"contact": "Chino Srinivasan, Anand Krishnan, Srikanth",
"start": "1999-07-07",
"comments": "OFF 2007, ISP block"
},
{
"number": "21",
"id": "111-ETH",
"device": "MINDSONG",
"lat": "-36.73",
"lng": "174.74",
"state": "Auckland, New Zealand",
"contact": "Barry Fenn, Bryan Roberts",
"start": "1999-07-13",
"comments": ""
},
{
"number": "22",
"id": "1027-ETH",
"device": "ORION-ORION",
"lat": "39.202",
"lng": "-84.404",
"state": "Cincinnati, Ohio, USA, was State College, PA",
"contact": "Doug Mast",
"start": "1999-09-28",
"end": "replaced with 1070",
"comments": "was 40.791, -77.858"
},
{
"number": "23",
"id": "1025-ETH",
"device": "ORION",
"lat": "-6.15",
"lng": "106.85",
"state": "Jakarta, Indonesia",
"contact": "Jeroen Martinot",
"start": "1999-10-30",
"end": "2001-06-29",
"comments": "OFF; contact moved from Jakarta"
},
{
"number": "24",
"id": "1024-ETH",
"device": "ORION",
"lat": "-36.83",
"lng": "174.64",
"state": "Auckland, New Zealand",
"contact": "Sze Tan",
"start": "1999-11-15",
"comments": "OFF, retired"
},
{
"number": "25",
"id": "108-ETH",
"device": "MINDSONG",
"lat": "-23.544",
"lng": "-46.652",
"state": "Sao Paulo, Brazil - was Sao Jose' dos Campos",
"contact": "Pedro P.B. de Oliveira -> Carlos Cecanecchia Neto",
"start": "1999-12-15",
"comments": "Egg 108 transfered June 2013, 500 meters"
},
{
"number": "26",
"id": "116-ETH",
"device": "MINDSONG",
"lat": "48.217",
"lng": "16.367",
"state": "Wien, Austria",
"contact": "Robert Pucher, Gerhard Hipfinger, Michael Braunstorfer, Alexander Nimmervoll",
"start": "1999-12-22",
"comments": ""
},
{
"number": "27",
"id": "105-DD",
"device": "MINDSONG",
"lat": "48.85",
"lng": "2.333",
"state": "Paris, France",
"contact": "Mario Varvoglis, Laurent Briois, Gregory Gutierez, Pierre Macias",
"start": "1999-12-26",
"comments": ""
},
{
"number": "28",
"id": "118-ETH",
"device": "MINDSONG",
"lat": "37.951",
"lng": "-122.361",
"state": "Richmond, CA, USA",
"contact": "Loren Carpenter",
"start": "1999-12-29",
"comments": ""
},
{
"number": "29",
"id": "1026-DD",
"device": "ORION Win95, 200012",
"lat": "13.8",
"lng": "177.3",
"state": "Bangalore, India",
"contact": "Chino Srinivasan, Srikanth, Kishor",
"start": "1999-12-30",
"comments": "OFF 2007? ISP blk add 100 lng"
},
{
"number": "30",
"id": "119-ETH",
"device": "MINDSONG",
"lat": "-33.31",
"lng": "26.52",
"state": "Grahamstown, South Africa",
"contact": "Richard Ragland, Chris Stones, Jacot Guillarmod",
"start": "2000-04-26",
"comments": "(move to #97)"
},
{
"number": "31",
"id": "134-ETH",
"device": "MINDSONG Debian",
"lat": "55.6",
"lng": "13",
"state": "Malmouml;, Sweden",
"contact": "Isak Johnsson, Peter Eriksson ('til 2005)",
"start": "2000-09-06",
"comments": ""
},
{
"number": "32",
"id": "142-ETH",
"device": "MINDSONG Debian to Win XP",
"lat": "55.44",
"lng": "12.529",
"state": "Soeborg to Valby, Denmark",
"contact": "Klaus A. Seistrup to Christian Andreasen",
"start": "2005-02-28, was 2000-09-25",
"comments": "was 55.733, 12.666"
},
{
"number": "33",
"id": "2000-ETH",
"device": "ORION Win NT",
"lat": "43.111",
"lng": "-88.5",
"state": "Oconomowoc, WI, USA",
"contact": "Paul Bethke",
"start": "2000-10-25",
"comments": ""
},
{
"number": "34",
"id": "2001-ETH",
"device": "ORION Win 2K",
"lat": "37.299",
"lng": "-121.994",
"state": "San Jose, CA, USA",
"contact": "Dean Radin, Dick Shoup",
"start": "2000-11-02",
"end": "2015-05-18",
"comments": ""
},
{
"number": "35",
"id": "2002-ETH",
"device": "ORION Win 2K",
"lat": "41.314",
"lng": "-81.835",
"state": "Strongsville, OH, USA; was San Antonio, TX, USA",
"contact": "Rick Berger",
"start": "2005-10-15, was 2000-12-02",
"comments": "was 29.493, -98.617"
},
{
"number": "36",
"id": "161-ETH",
"device": "MINDSONG Debian",
"lat": "-33.883",
"lng": "151.201",
"state": "Sydney, Australia",
"contact": "Anand Kumria, Christian Kent",
"start": "2000-12-12",
"comments": ""
},
{
"number": "37",
"id": "2173-DD",
"device": "MINDSONG Win 98",
"lat": "43.62",
"lng": "1.45",
"state": "Toulouse, France",
"contact": "Pierre Macias",
"start": "2000-12-29",
"comments": ""
},
{
"number": "38",
"id": "2165-ETH",
"device": "MINDSONG Win 98",
"lat": "-37.008",
"lng": "174.792",
"state": "Auckland, was Wellington, New Zealand",
"contact": "Ross George, (was Miles Thompson)",
"start": "2002-05-13; was 2001-02-06",
"comments": "was -41.25, 174.75"
},
{
"number": "39",
"id": "1013-ETH",
"device": "ORION Linux",
"lat": "-23.3",
"lng": "-46.3",
"state": "Mogi das Cruzes, Brazil",
"contact": "Agostinho Serrano de Andrade Neto",
"start": "2001-02-13",
"comments": "OFF; to Cuba as 2013"
},
{
"number": "40",
"id": "1223-ETH",
"device": "ORION, Debian on Mac",
"lat": "35.57",
"lng": "-82.55",
"state": "Asheville, NC, USA",
"contact": "Richard Wallace",
"start": "2001-05-20",
"comments": "was 223, 1st tried MINDSONG; 051113 -> Gentoo Linux on PC"
},
{
"number": "41",
"id": "2006-ETH",
"device": "ORION Win 2K",
"lat": "51.5",
"lng": "-0.116",
"state": "London, England, UK",
"contact": "Sina Morawej",
"start": "2001-05-25",
"comments": "Transfer to 98"
},
{
"number": "42",
"id": "2222-DD",
"device": "MINDSONG Win2K",
"lat": "41.903",
"lng": "-87.634",
"state": "Chicago, IL, USA",
"contact": "Fred Bosick",
"start": "2001-05-31",
"comments": "1) Ann Arbor, 2) 201103 Southgate, MI; 3) 201408 Chicago, IL"
},
{
"number": "43",
"id": "226-ETH",
"device": "MINDSONG Win2K",
"lat": "43",
"lng": "-81.25",
"state": "London, Ontario, CA",
"contact": "Robert Downie, transfer Quinn",
"start": "2001-08-12",
"comments": "becomes 85"
},
{
"number": "44",
"id": "2225-DD",
"device": "MINDSONG Win2K",
"lat": "31.25",
"lng": "34.84",
"state": "Beer-Sheva, Israel",
"contact": "Yubal Masalker",
"start": "2001-08-29",
"comments": ""
},
{
"number": "45",
"id": "2221-ETH",
"device": "MINDSONG-Orion WinME",
"lat": "40.67",
"lng": "-73.944",
"state": "New York City, NY, USA",
"contact": "Lisette Coly, Nancy Zingrone, Ian Clarke",
"start": "2004-08-05, was 2001-09-29",
"comments": "replace device #o050, 040805"
},
{
"number": "46",
"id": "2220-ETH",
"device": "MINDSONG Win2k",
"lat": "41.386",
"lng": "-83.326",
"state": "Gibsonburg, Ohio, USA",
"contact": "Nick Reiter, Lori Schillig",
"start": "2001-11-01",
"comments": ""
},
{
"number": "47",
"id": "2231-ETH",
"device": "MINDSONG Win98SE",
"lat": "59.38",
"lng": "18",
"state": "V?sterhaninge, Sweden",
"contact": "Henry Blom, transfer Thorsbro",
"start": "2001-11-24",
"comments": "Became 231, Same physical REG"
},
{
"number": "48",
"id": "227-ETH",
"device": "MINDSONG Linux",
"lat": "43.59",
"lng": "-79.46",
"state": "Mississauga, Ontario, Canada",
"contact": "Clifford Roche",
"start": "2001-11-26",
"comments": "OFF, transferred"
},
{
"number": "48",
"id": "227-ETH",
"device": "MINDSONG Linux",
"lat": "44.67",
"lng": "-63.58",
"state": "Halifax, Nova Scotia, Canada",
"contact": "Chris Hynes",
"start": "",
"comments": "OFF; transfer 2003-05-24, unsuccessful"
},
{
"number": "49",
"id": "228-ETH",
"device": "MINDSONG Linux",
"lat": "62.821",
"lng": "11.202",
"state": "Hessdalen, Norway",
"contact": "Erling Strand",
"start": "2001-11-27",
"comments": ""
},
{
"number": "50",
"id": "2007-ETH",
"device": "ORION Win 2000",
"lat": "26.86",
"lng": "-80.065",
"state": "Juno Beach, FL, USA",
"contact": "Norman Hirsch",
"start": "2001-12-07",
"comments": ""
},
{
"number": "51",
"id": "2178-ETH",
"device": "MINDSONG Win 98",
"lat": "37.187",
"lng": "-122.121",
"state": "Boulder Creek, CA, USA",
"contact": "Tom Beckman, Mike Atkinson",
"start": "2001-12-10",
"comments": ""
},
{
"number": "52",
"id": "233-ETH",
"device": "MINDSONG Linux",
"lat": "-1.283",
"lng": "36.817",
"state": "Nairobi, Kenya, Africa",
"contact": "Luke Ouko, Odhiambo",
"start": "2001-12-19",
"end": "XXXX-XX-XX",
"comments": "OFF; lost contact"
},
{
"number": "53",
"id": "230-ETH",
"device": "ORION was MINDSONG to 030620 Win ME",
"lat": "46.067",
"lng": "-118.334",
"state": "Walla Walla, WA, USA",
"contact": "Michael Breland, Martin Manny",
"start": "2001-12-21",
"comments": "becomes 2230, Different physical REGs"
},
{
"number": "54",
"id": "1101-ETH",
"device": "ORION Linux",
"lat": "35.694",
"lng": "139.767",
"state": "Tokyo, Japan",
"contact": "Masato Ishikawa, Hideki Matsuzaki, Tatsu Hirukawa",
"start": "2002-01-08",
"comments": ""
},
{
"number": "55",
"id": "231-ETH",
"device": "MINDSONG Linux",
"lat": "55.717",
"lng": "12.45",
"state": "Copenhagen, DK",
"contact": "Brian Peter Thorsbro, was Henry Blom",
"start": "2002-01-19",
"comments": ""
},
{
"number": "56",
"id": "1004-ETH",
"device": "ORION Linux",
"lat": "64.795",
"lng": "-147.386",
"state": "AK, USA",
"contact": "Michael Walker",
"start": "2001-03-07",
"comments": ""
},
{
"number": "57",
"id": "2236-DD",
"device": "MINDSONG Win 98?",
"lat": "31.242",
"lng": "121.504",
"state": "Shanghai, China",
"contact": "Jammy Xie",
"start": "2002-03-03",
"comments": ""
},
{
"number": "58",
"id": "1237-ETH",
"device": "MINDSONG Win98SE, was Linux",
"lat": "55.75",
"lng": "37.617",
"state": "Moscow, Russia",
"contact": "Sergey Medvedev, Ramil Yafizov",
"start": "2002-02-05, on2 2004-02-27",
"comments": "was OFF Stolen but recovered, return 040227"
},
{
"number": "59",
"id": "2235-ETH",
"device": "MINDSONG Win 98?",
"lat": "43.07",
"lng": "131.54",
"state": "Vladivostok, Russia",
"contact": "Oleg Avchenko",
"start": "2002-04-17",
"comments": ""
},
{
"number": "60",
"id": "2008-ETH",
"device": "ORION Win NT",
"lat": "49.284",
"lng": "-123.11",
"state": "Vancouver, Canada",
"contact": "Frank Ogden, Jim Semenick",
"start": "2002-07-09",
"comments": "Our only floating egg"
},
{
"number": "61",
"id": "2009-ETH",
"device": "ORION Win 2K?",
"lat": "41.2",
"lng": "-8.6",
"state": "Porto, Portugal",
"contact": "Hugo Ferriera",
"start": "2002-07-23",
"comments": ""
},
{
"number": "62",
"id": "2239-ETH",
"device": "ORION Win 98SE",
"lat": "-38",
"lng": "175",
"state": "KihiKihi, New Zealand",
"contact": "Duanne McMahon",
"start": "2002-08-27 off 2002-08-30",
"comments": "OFF"
},
{
"number": "63",
"id": "2024-ETH",
"device": "ORION Win 98SE",
"lat": "14.617",
"lng": "121.05",
"state": "Manila, Philippines",
"contact": "Mike Mangubat, Beth McDonald, Chris Remoto, Jojo Jimenez",
"start": "2002-10-01",
"comments": ""
},
{
"number": "64",
"id": "2028-ETH",
"device": "ORION Win 2000",
"lat": "52.09",
"lng": "5.18",
"state": "Soest, The Netherlands",
"contact": "Lex Sjoerds",
"start": "2002-10-16",
"comments": ""
},
{
"number": "65",
"id": "2044-ETH",
"device": "ORION Win 2000",
"lat": "9.5",
"lng": "100.24",
"state": "Koh Samui, Thailand",
"contact": "John Robarge",
"start": "2002-12-17",
"comments": "OFF 2004?"
},
{
"number": "66",
"id": "2023-ETH",
"device": "ORION Win 2000?",
"lat": "50.933",
"lng": "6.95",
"state": "Cologne, Germany",
"contact": "Johannes Hagel, Margot Tschapke",
"start": "2003-01-18",
"comments": ""
},
{
"number": "67",
"id": "2022-ETH",
"device": "ORION Win NT",
"lat": "4.9",
"lng": "-52.5",
"state": "Cayenne, French Guiana",
"contact": "Olivier Guin",
"start": "2003-01-29",
"comments": "OFF 2005?"
},
{
"number": "68",
"id": "2027-PPP",
"device": "ORION Win 2000",
"lat": "38.027",
"lng": "23.733",
"state": "Athens, Greece",
"contact": "Panos Axiomakaros",
"start": "2003-04-02",
"comments": ""
},
{
"number": "69",
"id": "2234-ETH",
"device": "MINDSONG Windows",
"lat": "37.567",
"lng": "126.978",
"state": "Seoul, Korea",
"contact": "Yong Hwan Kim, Hojun Na",
"start": "2003-05-05",
"comments": ""
},
{
"number": "70",
"id": "2013-ETH",
"device": "ORION Linux",
"lat": "23.133",
"lng": "-82.367",
"state": "Havana, Cuba",
"contact": "Carlos Delgado",
"start": "2003-06-02",
"comments": "was 39 1013, OFF 2007?"
},
{
"number": "71",
"id": "2026-ETH",
"device": "ORION Win 2000",
"lat": "50.083",
"lng": "14.433",
"state": "Prague, Czech Republic",
"contact": "Vadim Petrov",
"start": "2003-06-09",
"comments": "OFF, becomes 79"
},
{
"number": "72",
"id": "1025-ETH",
"device": "ORION Linux",
"lat": "46.76",
"lng": "23.591",
"state": "Cluj-Napoca, Romania",
"contact": "Adrian Patrut",
"start": "2003-06-29",
"comments": ""
},
{
"number": "73",
"id": "1113-ETH",
"device": "PEAR Linux",
"lat": "34.056",
"lng": "-118.43",
"state": "Los Angeles, CA, USA",
"contact": "Ian Cook",
"start": "2003-08-20",
"comments": ""
},
{
"number": "74",
"id": "2040-ETH",
"device": "ORION Linux",
"lat": "55.803",
"lng": "37.641",
"state": "Moscow, Russia",
"contact": "Vasiliy Malyshev (was Dmitriy Kulikov)",
"start": "2006-10-25 (orig 2003-09-01)",
"comments": "was 55.750, 37.617"
},
{
"number": "75",
"id": "2043-ETH",
"device": "ORION Win XP",
"lat": "33.669",
"lng": "-117.822",
"state": "Irvine, CA, USA",
"contact": "Dr. Jes",
"start": "2003-10-29",
"comments": "Transfer to Heiner 3043"
},
{
"number": "76",
"id": "2041-ETH",
"device": "ORION Win XP",
"lat": "-34.767",
"lng": "138.537",
"state": "Adelaide, Australia",
"contact": "Graham Andrew",
"start": "2003-12-17",
"comments": ""
},
{
"number": "77",
"id": "2046-ETH",
"device": "ORION Win 2K",
"lat": "-19.917",
"lng": "-43.933",
"state": "Belo Horizonte, Brazil",
"contact": "Joao Vicente Dornas",
"start": "2004-01-20",
"comments": "OFF 2006? transfer to 92"
},
{
"number": "78",
"id": "2042-ETH",
"device": "ORION Win XP",
"lat": "45.438",
"lng": "9.97",
"state": "Verona, Italia",
"contact": "Matteo Mion",
"start": "2004-02-17",
"comments": ""
},
{
"number": "79",
"id": "2026-ETH",
"device": "ORION Win XP",
"lat": "49.425",
"lng": "12.825",
"state": "Klenci pod Cerchovem, Czech Republic",
"contact": "Dalibor Bartos",
"start": "2004-02-20",
"comments": "OFF 2005? transfer, was 71"
},
{
"number": "80",
"id": "2047-ETH",
"device": "ORION Win XP",
"lat": "66",
"lng": "16.647",
"state": "Vuollerim, Sweden",
"contact": "Annchristine Anderson, Audun Otterbech, Anders Y Larsson",
"start": "2004-03-25",
"comments": ""
},
{
"number": "81",
"id": "2045-ETH",
"device": "ORION Win XP",
"lat": "21.317",
"lng": "-157.805",
"state": "Kaneohe, Hawaii",
"contact": "Michiel Schotten, Karen Maruska",
"start": "2004-04-14",
"comments": "OFF 2007?"
},
{
"number": "82",
"id": "2073-ETH",
"device": "ORION Win XP",
"lat": "34.53",
"lng": "32.23",
"state": "Peyia, Cyprus",
"contact": "Linda LeBlanc, John Knowles, Geoff Rudge",
"start": "2004-04-16",
"comments": "hardware change, Oct 2007, 2048 defective"
},
{
"number": "83",
"id": "2049-ETH",
"device": "ORION Win XP",
"lat": "38.316",
"lng": "26.635",
"state": "Izmir, Turkey",
"contact": "Inci Erkin, Mustafa Haznedaroglu",
"start": "2004-05-06",
"comments": ""
},
{
"number": "84",
"id": "2052-ETH",
"device": "ORION Win 2000",
"lat": "37.873",
"lng": "23.759",
"state": "Athens, Greece",
"contact": "John Piliounis",
"start": "2004-06-15",
"comments": ""
},
{
"number": "85",
"id": "226-ETH",
"device": "MINDSONG Mandrake Linux",
"lat": "43.683",
"lng": "-79.767",
"state": "Brampton, Ontario, Canada",
"contact": "Steve Quinn",
"start": "2004-09-29",
"comments": ""
},
{
"number": "86",
"id": "2060-ETH",
"device": "ORION Windows 2000",
"lat": "38.71",
"lng": "-9.13",
"state": "Lisbon, Portugal",
"contact": "Jaime Machado",
"start": "2004-10-04",
"comments": ""
},
{
"number": "87",
"id": "1051-ETH",
"device": "ORION RedHat Linux",
"lat": "35.733",
"lng": "-78.883",
"state": "Apex, NC, USA",
"contact": "David Hinson",