diff --git a/game/internal/controller/report.go b/game/internal/controller/report.go index 4458f24..50740f3 100644 --- a/game/internal/controller/report.go +++ b/game/internal/controller/report.go @@ -733,6 +733,7 @@ func (c *Cache) otherGroup(v *mr.OtherGroup, sg *game.ShipGroup, st *game.ShipTy } v.Speed = mr.F(sg.Speed(st)) v.Mass = mr.F(st.EmptyMass()) + v.Race = c.g.Race[c.RaceIndex(sg.OwnerID)].Name } func (c *Cache) localPlanet(v *mr.LocalPlanet, p *game.Planet) { diff --git a/pkg/model/report/ship.go b/pkg/model/report/ship.go index a5bb2c8..bb41b23 100644 --- a/pkg/model/report/ship.go +++ b/pkg/model/report/ship.go @@ -52,6 +52,13 @@ type OtherGroup struct { Range *Float `json:"range,omitempty"` Speed Float `json:"speed"` Mass Float `json:"mass"` + // Race is the owner's display name resolved from `sg.OwnerID` + // (or, for legacy reports, the section header that introduced + // the row). The local race fills this in for its own + // `LocalGroup` copies via the embedded `OtherGroup` field so + // every group carries an authoritative attribution rather than a + // "foreign" fallback heuristic at render time. + Race string `json:"race,omitempty"` } type UnidentifiedGroup struct { diff --git a/pkg/schema/fbs/report.fbs b/pkg/schema/fbs/report.fbs index 24301d8..23cae10 100644 --- a/pkg/schema/fbs/report.fbs +++ b/pkg/schema/fbs/report.fbs @@ -168,6 +168,7 @@ table OtherGroup { range:float32 = null; speed:float32; mass:float32; + race:string; } table LocalGroup { @@ -184,6 +185,7 @@ table LocalGroup { id:common.UUID (required); state:string; fleet:string; + race:string; } table LocalFleet { diff --git a/pkg/schema/fbs/report/LocalGroup.go b/pkg/schema/fbs/report/LocalGroup.go index b268708..a1c8b33 100644 --- a/pkg/schema/fbs/report/LocalGroup.go +++ b/pkg/schema/fbs/report/LocalGroup.go @@ -194,8 +194,16 @@ func (rcv *LocalGroup) Fleet() []byte { return nil } +func (rcv *LocalGroup) Race() []byte { + o := flatbuffers.UOffsetT(rcv._tab.Offset(30)) + if o != 0 { + return rcv._tab.ByteVector(o + rcv._tab.Pos) + } + return nil +} + func LocalGroupStart(builder *flatbuffers.Builder) { - builder.StartObject(13) + builder.StartObject(14) } func LocalGroupAddNumber(builder *flatbuffers.Builder, number uint64) { builder.PrependUint64Slot(0, number, 0) @@ -241,6 +249,9 @@ func LocalGroupAddState(builder *flatbuffers.Builder, state flatbuffers.UOffsetT func LocalGroupAddFleet(builder *flatbuffers.Builder, fleet flatbuffers.UOffsetT) { builder.PrependUOffsetTSlot(12, flatbuffers.UOffsetT(fleet), 0) } +func LocalGroupAddRace(builder *flatbuffers.Builder, race flatbuffers.UOffsetT) { + builder.PrependUOffsetTSlot(13, flatbuffers.UOffsetT(race), 0) +} func LocalGroupEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT { return builder.EndObject() } diff --git a/pkg/schema/fbs/report/OtherGroup.go b/pkg/schema/fbs/report/OtherGroup.go index a2664c2..4bf0eff 100644 --- a/pkg/schema/fbs/report/OtherGroup.go +++ b/pkg/schema/fbs/report/OtherGroup.go @@ -163,8 +163,16 @@ func (rcv *OtherGroup) MutateMass(n float32) bool { return rcv._tab.MutateFloat32Slot(22, n) } +func (rcv *OtherGroup) Race() []byte { + o := flatbuffers.UOffsetT(rcv._tab.Offset(24)) + if o != 0 { + return rcv._tab.ByteVector(o + rcv._tab.Pos) + } + return nil +} + func OtherGroupStart(builder *flatbuffers.Builder) { - builder.StartObject(10) + builder.StartObject(11) } func OtherGroupAddNumber(builder *flatbuffers.Builder, number uint64) { builder.PrependUint64Slot(0, number, 0) @@ -201,6 +209,9 @@ func OtherGroupAddSpeed(builder *flatbuffers.Builder, speed float32) { func OtherGroupAddMass(builder *flatbuffers.Builder, mass float32) { builder.PrependFloat32Slot(9, mass, 0.0) } +func OtherGroupAddRace(builder *flatbuffers.Builder, race flatbuffers.UOffsetT) { + builder.PrependUOffsetTSlot(10, flatbuffers.UOffsetT(race), 0) +} func OtherGroupEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT { return builder.EndObject() } diff --git a/pkg/transcoder/report.go b/pkg/transcoder/report.go index f2d9771..df8b622 100644 --- a/pkg/transcoder/report.go +++ b/pkg/transcoder/report.go @@ -513,6 +513,7 @@ func encodeReportLocalGroup(builder *flatbuffers.Builder, group *model.LocalGrou class := builder.CreateString(group.Class) cargo := builder.CreateString(group.Cargo) state := builder.CreateString(group.State) + race := builder.CreateString(group.Race) tech := encodeReportTechEntryVector(builder, group.Tech) var fleet flatbuffers.UOffsetT @@ -544,6 +545,7 @@ func encodeReportLocalGroup(builder *flatbuffers.Builder, group *model.LocalGrou if group.Fleet != nil { fbs.LocalGroupAddFleet(builder, fleet) } + fbs.LocalGroupAddRace(builder, race) return fbs.LocalGroupEnd(builder) } @@ -551,6 +553,7 @@ func encodeReportOtherGroup(builder *flatbuffers.Builder, group *model.OtherGrou class := builder.CreateString(group.Class) cargo := builder.CreateString(group.Cargo) tech := encodeReportTechEntryVector(builder, group.Tech) + race := builder.CreateString(group.Race) fbs.OtherGroupStart(builder) fbs.OtherGroupAddNumber(builder, uint64(group.Number)) @@ -569,6 +572,7 @@ func encodeReportOtherGroup(builder *flatbuffers.Builder, group *model.OtherGrou } fbs.OtherGroupAddSpeed(builder, reportFloatToFBS(group.Speed)) fbs.OtherGroupAddMass(builder, reportFloatToFBS(group.Mass)) + fbs.OtherGroupAddRace(builder, race) return fbs.OtherGroupEnd(builder) } @@ -1134,6 +1138,7 @@ func decodeReportLocalGroupVector(flatReport *fbs.Report, result *model.Report) Destination: destination, Speed: reportFloatFromFBS(item.Speed()), Mass: reportFloatFromFBS(item.Mass()), + Race: string(item.Race()), }, ID: uuidFromHiLo(id.Hi(), id.Lo()), State: string(item.State()), @@ -1196,6 +1201,7 @@ func decodeReportOtherGroupVector(flatReport *fbs.Report, result *model.Report) Destination: destination, Speed: reportFloatFromFBS(item.Speed()), Mass: reportFloatFromFBS(item.Mass()), + Race: string(item.Race()), } if origin := item.Origin(); origin != nil { diff --git a/pkg/transcoder/report_test.go b/pkg/transcoder/report_test.go index 6f13d3a..2aeb7ec 100644 --- a/pkg/transcoder/report_test.go +++ b/pkg/transcoder/report_test.go @@ -352,6 +352,7 @@ func sampleReport() *model.Report { Range: &rangeB, Speed: model.Float(2.5), Mass: model.Float(12.0), + Race: "Earthlings", }, ID: uuid.MustParse("33333333-3333-3333-3333-333333333333"), State: "in_orbit", @@ -359,7 +360,7 @@ func sampleReport() *model.Report { }, }, OtherGroup: []model.OtherGroup{ - {Number: 2, Class: "scout", Tech: map[string]model.Float{"CARGO": model.Float(1.25), "DRIVE": model.Float(1.75)}, Cargo: "CAP", Load: model.Float(3.5), Destination: 5, Speed: model.Float(2.25), Mass: model.Float(8.5)}, + {Number: 2, Class: "scout", Tech: map[string]model.Float{"CARGO": model.Float(1.25), "DRIVE": model.Float(1.75)}, Cargo: "CAP", Load: model.Float(3.5), Destination: 5, Speed: model.Float(2.25), Mass: model.Float(8.5), Race: "Klingons"}, }, UnidentifiedGroup: []model.UnidentifiedGroup{ {X: model.Float(10.0), Y: model.Float(11.0)}, diff --git a/tools/local-dev/legacy-report/parser.go b/tools/local-dev/legacy-report/parser.go index 8500ade..e22855b 100644 --- a/tools/local-dev/legacy-report/parser.go +++ b/tools/local-dev/legacy-report/parser.go @@ -158,8 +158,12 @@ type pendingGroup struct { // foreign planets, so the destination resolves against the parsed // planet tables in [parser.resolvePending]. The legacy row carries // no origin / range / fleet columns, so foreign groups are always -// treated as stationed at the destination. +// treated as stationed at the destination. The `race` field is set +// from the section header that introduced the row, so the inspector +// can name the foreign owner directly without falling back to a +// generic "foreign" placeholder. type pendingOtherGroup struct { + race string count uint class string drive float64 @@ -1122,6 +1126,7 @@ func (p *parser) parseOtherGroup(fields []string) { mass, _ := parseFloat(fields[10]) p.pendingOtherGroups = append(p.pendingOtherGroups, pendingOtherGroup{ + race: p.otherOwner, count: uint(count), class: fields[1], drive: drive, @@ -1230,6 +1235,7 @@ func (p *parser) resolvePending() { Origin: origin, Range: rng, Mass: report.F(pg.mass), + Race: p.rep.Race, }, ID: syntheticGroupID(pg.g), State: pg.state, @@ -1256,6 +1262,7 @@ func (p *parser) resolvePending() { Load: report.F(pg.load), Destination: dest, Mass: report.F(pg.mass), + Race: pg.race, }) } diff --git a/tools/local-dev/legacy-report/parser_test.go b/tools/local-dev/legacy-report/parser_test.go index a7de7d8..ec5078a 100644 --- a/tools/local-dev/legacy-report/parser_test.go +++ b/tools/local-dev/legacy-report/parser_test.go @@ -844,6 +844,9 @@ func TestParseOtherAndUnidentifiedGroups(t *testing.T) { t.Errorf("a (Class, Number, Destination) = (%q, %d, %d), want (\"Skiff\", 6, 17)", a.Class, a.Number, a.Destination) } + if a.Race != "Aliens" { + t.Errorf("a Race = %q, want %q (carried over from the section header)", a.Race, "Aliens") + } if a.Cargo != "COL" || float64(a.Load) != 2 || float64(a.Mass) != 3 { t.Errorf("a (Cargo, Load, Mass) = (%q, %v, %v), want (\"COL\", 2, 3)", a.Cargo, float64(a.Load), float64(a.Mass)) @@ -860,6 +863,9 @@ func TestParseOtherAndUnidentifiedGroups(t *testing.T) { t.Errorf("b (Class, Number, Destination) = (%q, %d, %d), want (\"Phantom\", 1, 42)", b.Class, b.Number, b.Destination) } + if b.Race != "Reds" { + t.Errorf("b Race = %q, want %q (separate section, separate owner)", b.Race, "Reds") + } if got, want := len(rep.UnidentifiedGroup), 2; got != want { t.Fatalf("len(UnidentifiedGroup) = %d, want %d", got, want) diff --git a/tools/local-dev/reports/dg/KNNTS039.json b/tools/local-dev/reports/dg/KNNTS039.json index 570673d..24722ad 100644 --- a/tools/local-dev/reports/dg/KNNTS039.json +++ b/tools/local-dev/reports/dg/KNNTS039.json @@ -8358,6 +8358,7 @@ "destination": 685, "speed": 0, "mass": 12.37, + "race": "KnightErrants", "id": "c1b96767-472f-5a96-8d83-369b5800b1c1", "state": "In_Orbit", "fleet": null @@ -8376,6 +8377,7 @@ "destination": 622, "speed": 0, "mass": 24.75, + "race": "KnightErrants", "id": "d3c4e0e7-de33-5145-b28b-293b2e02c445", "state": "In_Orbit", "fleet": null @@ -8394,6 +8396,7 @@ "destination": 114, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "fe8805a6-d03c-5b66-a062-c9eaa2266d20", "state": "In_Orbit", "fleet": null @@ -8412,6 +8415,7 @@ "destination": 223, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ce729a18-d695-5bed-857e-2806e576a1f1", "state": "In_Orbit", "fleet": null @@ -8430,6 +8434,7 @@ "destination": 46, "speed": 0, "mass": 7.07, + "race": "KnightErrants", "id": "0d0263b4-ff6b-5d55-b7cd-ac73d873812c", "state": "In_Orbit", "fleet": null @@ -8448,6 +8453,7 @@ "destination": 495, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "fde80508-8829-5e8f-afa4-e16d2ce3e24f", "state": "In_Orbit", "fleet": null @@ -8466,6 +8472,7 @@ "destination": 447, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "78449cc4-c2ec-53de-a0a3-87512990f742", "state": "In_Orbit", "fleet": null @@ -8484,6 +8491,7 @@ "destination": 385, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0f48d7f3-8e0d-539d-afbe-8a59f6ef2fcf", "state": "In_Orbit", "fleet": null @@ -8502,6 +8510,7 @@ "destination": 223, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ee402052-9f78-5244-a57f-0c36e497ebef", "state": "In_Orbit", "fleet": null @@ -8520,6 +8529,7 @@ "destination": 495, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "25de95f9-580a-5135-9ad7-f6ee91e74c9f", "state": "In_Orbit", "fleet": null @@ -8538,6 +8548,7 @@ "destination": 679, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "74c19316-4e30-574d-b7a6-3c98c13342d7", "state": "In_Orbit", "fleet": null @@ -8556,6 +8567,7 @@ "destination": 385, "speed": 0, "mass": 149.54, + "race": "KnightErrants", "id": "6875713d-719e-5740-ae2b-1dae8925a18d", "state": "In_Orbit", "fleet": null @@ -8574,6 +8586,7 @@ "destination": 385, "speed": 0, "mass": 149.54, + "race": "KnightErrants", "id": "ae51be3a-e3f7-59c1-83bd-ee193e3a0b6a", "state": "In_Orbit", "fleet": null @@ -8592,6 +8605,7 @@ "destination": 635, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "e9addad6-60b0-5401-8b2d-e77c7dcea116", "state": "In_Orbit", "fleet": null @@ -8610,6 +8624,7 @@ "destination": 431, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0ecedad6-87f3-5371-b0a5-1d8e44e934cd", "state": "In_Orbit", "fleet": null @@ -8628,6 +8643,7 @@ "destination": 183, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2a64b7aa-d58b-5a04-81c5-600d4743dd1a", "state": "In_Orbit", "fleet": null @@ -8646,6 +8662,7 @@ "destination": 190, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ee77f33d-5bf5-5935-81b1-ae0b4c80bd06", "state": "In_Orbit", "fleet": null @@ -8664,6 +8681,7 @@ "destination": 292, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "407c3512-cff7-57fe-8c61-1492eedf2f38", "state": "In_Orbit", "fleet": null @@ -8682,6 +8700,7 @@ "destination": 504, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "8aa2ce73-3bfe-5f70-8993-da801d34f6ab", "state": "In_Orbit", "fleet": null @@ -8702,6 +8721,7 @@ "range": 29.86, "speed": 0, "mass": 98.25, + "race": "KnightErrants", "id": "0885e23e-96a9-53a4-87bf-7ffdc8d25a63", "state": "In_Space", "fleet": null @@ -8720,6 +8740,7 @@ "destination": 369, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "db5a16d7-ea0b-5576-bbbf-2cf7086b74f6", "state": "In_Orbit", "fleet": null @@ -8738,6 +8759,7 @@ "destination": 231, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "93151891-83e7-57ab-b22f-3ab7af738478", "state": "In_Orbit", "fleet": null @@ -8756,6 +8778,7 @@ "destination": 385, "speed": 0, "mass": 99, + "race": "KnightErrants", "id": "5f9fdb83-8163-56e2-a538-9cb04f860936", "state": "In_Orbit", "fleet": null @@ -8774,6 +8797,7 @@ "destination": 385, "speed": 0, "mass": 49.99, + "race": "KnightErrants", "id": "4de87a01-538f-575b-aa07-5788768a44f7", "state": "In_Orbit", "fleet": null @@ -8792,6 +8816,7 @@ "destination": 79, "speed": 0, "mass": 34, + "race": "KnightErrants", "id": "17d48fe8-b2cd-58b7-ada4-b16994cf0f91", "state": "In_Orbit", "fleet": null @@ -8810,6 +8835,7 @@ "destination": 693, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "503d36af-4488-5ef0-b5de-9cd23cd41084", "state": "In_Orbit", "fleet": null @@ -8828,6 +8854,7 @@ "destination": 114, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "64596118-d163-5699-ab59-c47355ed2cf1", "state": "In_Orbit", "fleet": null @@ -8846,6 +8873,7 @@ "destination": 654, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0e551f01-bea8-5499-9295-4edd11ce9275", "state": "In_Orbit", "fleet": null @@ -8864,6 +8892,7 @@ "destination": 559, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "998ee779-660a-5105-b749-dcceeb29b700", "state": "In_Orbit", "fleet": null @@ -8882,6 +8911,7 @@ "destination": 95, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "cdd558d3-b4b7-52e3-959a-01c9bfc653d6", "state": "In_Orbit", "fleet": null @@ -8900,6 +8930,7 @@ "destination": 49, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "49870a7d-956f-5aa0-a0c9-66a0b661056e", "state": "In_Orbit", "fleet": null @@ -8918,6 +8949,7 @@ "destination": 206, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "6873b5e0-2a1b-567e-b4b6-ba48ea48e802", "state": "In_Orbit", "fleet": null @@ -8936,6 +8968,7 @@ "destination": 519, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "06925742-c92a-5d80-8754-f6352ccdfc6e", "state": "In_Orbit", "fleet": null @@ -8954,6 +8987,7 @@ "destination": 523, "speed": 0, "mass": 2.26, + "race": "KnightErrants", "id": "74bf52d3-1051-5785-b08e-d31561d7b2e8", "state": "In_Orbit", "fleet": null @@ -8972,6 +9006,7 @@ "destination": 385, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "7e2aa02b-5dc4-5574-a33e-d4c216737347", "state": "In_Orbit", "fleet": null @@ -8990,6 +9025,7 @@ "destination": 111, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "66380351-e3b3-54b1-9bb7-6615b9be62ca", "state": "In_Orbit", "fleet": null @@ -9008,6 +9044,7 @@ "destination": 391, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "aa23b889-0780-5c75-be58-513f49d4a87e", "state": "In_Orbit", "fleet": null @@ -9026,6 +9063,7 @@ "destination": 474, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "87194948-6d67-5234-894d-25dbdea031db", "state": "In_Orbit", "fleet": null @@ -9044,6 +9082,7 @@ "destination": 572, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "550e32b9-4068-5c7f-8237-a0dd1f26ece0", "state": "In_Orbit", "fleet": null @@ -9062,6 +9101,7 @@ "destination": 17, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "d52f6245-4857-5703-8125-0ae3c3876baf", "state": "In_Orbit", "fleet": null @@ -9080,6 +9120,7 @@ "destination": 177, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "9a818b63-4fc9-59d6-bfe3-03f683715a0e", "state": "In_Orbit", "fleet": null @@ -9098,6 +9139,7 @@ "destination": 9, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "d2cd96c7-fb2f-5ea2-a0b0-23aadc221cb9", "state": "In_Orbit", "fleet": null @@ -9116,6 +9158,7 @@ "destination": 394, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "5a0ef736-42d3-5394-b385-6aa62527b0fc", "state": "In_Orbit", "fleet": null @@ -9134,6 +9177,7 @@ "destination": 519, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0561b727-bdca-5c26-865c-4845795e7edb", "state": "In_Orbit", "fleet": null @@ -9152,6 +9196,7 @@ "destination": 610, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "58caa413-f1d5-5e5a-812c-e4c3977cd534", "state": "In_Orbit", "fleet": null @@ -9170,6 +9215,7 @@ "destination": 596, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "f0890948-3c59-54b4-bdc6-092d383d5e62", "state": "In_Orbit", "fleet": null @@ -9188,6 +9234,7 @@ "destination": 558, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "45955281-0c7c-5e4c-9e11-c2c40efb3e58", "state": "In_Orbit", "fleet": null @@ -9206,6 +9253,7 @@ "destination": 622, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "86968f2e-fc10-5366-9336-af8ceec34f9d", "state": "In_Orbit", "fleet": null @@ -9224,6 +9272,7 @@ "destination": 130, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "8f0956d0-f58e-52b3-97b3-5b77616680c7", "state": "In_Orbit", "fleet": null @@ -9242,6 +9291,7 @@ "destination": 268, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ab3be9b6-f441-5687-8538-06be6837dd23", "state": "In_Orbit", "fleet": null @@ -9260,6 +9310,7 @@ "destination": 458, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ce28e59d-1643-5c26-b3d1-74aaa3e796d6", "state": "In_Orbit", "fleet": null @@ -9278,6 +9329,7 @@ "destination": 662, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2b76689e-2be9-5103-88b4-e929ac180b33", "state": "In_Orbit", "fleet": null @@ -9296,6 +9348,7 @@ "destination": 48, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2a13adc9-41f1-5f1e-b1f4-f9f7709fcaa9", "state": "In_Orbit", "fleet": null @@ -9314,6 +9367,7 @@ "destination": 253, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "42f76fd5-39ef-5881-9e96-3090979df3e2", "state": "In_Orbit", "fleet": null @@ -9332,6 +9386,7 @@ "destination": 513, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "04c131cb-f3f1-53c3-9162-2865caae0119", "state": "In_Orbit", "fleet": null @@ -9350,6 +9405,7 @@ "destination": 521, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "7bc54e58-b931-55df-8864-e4b58748f559", "state": "In_Orbit", "fleet": null @@ -9368,6 +9424,7 @@ "destination": 69, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "4ef24cc5-69b3-51c8-a8be-e54c2f047fa5", "state": "In_Orbit", "fleet": null @@ -9386,6 +9443,7 @@ "destination": 14, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "de8001eb-3bbd-5c4c-9b43-f57727b13d36", "state": "In_Orbit", "fleet": null @@ -9404,6 +9462,7 @@ "destination": 243, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "43143f40-e0ed-5651-be78-4a59aea98398", "state": "In_Orbit", "fleet": null @@ -9422,6 +9481,7 @@ "destination": 191, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "654d6549-470b-594f-bbf4-5f4b01b44597", "state": "In_Orbit", "fleet": null @@ -9440,6 +9500,7 @@ "destination": 697, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "6b748afc-108b-5933-b605-dbfd1283c605", "state": "In_Orbit", "fleet": null @@ -9458,6 +9519,7 @@ "destination": 430, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2018e46b-c2cf-56ee-99b6-4198525138bf", "state": "In_Orbit", "fleet": null @@ -9476,6 +9538,7 @@ "destination": 45, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "855d3f4f-5a4e-5678-b438-5ad9a51c2723", "state": "In_Orbit", "fleet": null @@ -9494,6 +9557,7 @@ "destination": 549, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0cb8bb36-2707-55b8-9d29-1d880530a1d0", "state": "In_Orbit", "fleet": null @@ -9512,6 +9576,7 @@ "destination": 461, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "33c78d02-ffc9-5df5-9017-918e005b5818", "state": "In_Orbit", "fleet": null @@ -9530,6 +9595,7 @@ "destination": 24, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "5e0450e1-acec-5f13-bb51-ef5c727f5206", "state": "In_Orbit", "fleet": null @@ -9548,6 +9614,7 @@ "destination": 283, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0299ab68-b1d6-5c0d-98ec-a4dd0535c8e7", "state": "In_Orbit", "fleet": null @@ -9566,6 +9633,7 @@ "destination": 587, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "f0a94be5-3af6-534b-a8cd-7e9c2d31ad0f", "state": "In_Orbit", "fleet": null @@ -9584,6 +9652,7 @@ "destination": 691, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "353840c6-3720-5d10-86c7-d6667de4f529", "state": "In_Orbit", "fleet": null @@ -9602,6 +9671,7 @@ "destination": 479, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0ea4bdec-0e97-56e3-8bf9-9e5e2e303e91", "state": "In_Orbit", "fleet": null @@ -9620,6 +9690,7 @@ "destination": 425, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "5515386b-054e-501e-84de-4e44adcab2ef", "state": "In_Orbit", "fleet": null @@ -9638,6 +9709,7 @@ "destination": 396, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "19d4a93c-ae3e-59f3-9b84-3102cfe19579", "state": "In_Orbit", "fleet": null @@ -9656,6 +9728,7 @@ "destination": 673, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "298455f2-a7c3-5019-b838-48dff1f77e90", "state": "In_Orbit", "fleet": null @@ -9674,6 +9747,7 @@ "destination": 203, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "35f632d6-2f85-5862-8cbc-8be2efce421c", "state": "In_Orbit", "fleet": null @@ -9692,6 +9766,7 @@ "destination": 530, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "f081f7e2-4f20-5fab-afc8-7ee9e51e7eee", "state": "In_Orbit", "fleet": null @@ -9710,6 +9785,7 @@ "destination": 385, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "e4e83504-fc42-5e69-ae10-4f416a679c3d", "state": "In_Orbit", "fleet": null @@ -9728,6 +9804,7 @@ "destination": 141, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "cff70000-645c-5f51-b811-39cb6caff8ff", "state": "In_Orbit", "fleet": null @@ -9746,6 +9823,7 @@ "destination": 12, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "9fc146f9-586a-577e-b54c-761c9bde3fb2", "state": "In_Orbit", "fleet": null @@ -9764,6 +9842,7 @@ "destination": 622, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "7a5bd189-caf0-5a9c-80f2-adc125936433", "state": "In_Orbit", "fleet": null @@ -9782,6 +9861,7 @@ "destination": 602, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "1d92183d-f227-5431-950f-7aa289537315", "state": "In_Orbit", "fleet": null @@ -9800,6 +9880,7 @@ "destination": 552, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ea8a1391-c7b3-5d4b-b8bd-b18cd6eefb5d", "state": "In_Orbit", "fleet": null @@ -9818,6 +9899,7 @@ "destination": 28, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "637e0bbb-7382-5fba-8ee6-cbd019498aa1", "state": "In_Orbit", "fleet": null @@ -9836,6 +9918,7 @@ "destination": 370, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "00c3384d-233d-5df4-9900-a2acad0846f7", "state": "In_Orbit", "fleet": null @@ -9854,6 +9937,7 @@ "destination": 532, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "80134b6e-30aa-58e6-a5c7-a5e1c82f06b4", "state": "In_Orbit", "fleet": null @@ -9872,6 +9956,7 @@ "destination": 612, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "c5caab15-aaee-5db6-89c9-9e2d234002a5", "state": "In_Orbit", "fleet": null @@ -9890,6 +9975,7 @@ "destination": 139, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "f3b90726-fffe-5d20-b43d-8d3204a03887", "state": "In_Orbit", "fleet": null @@ -9908,6 +9994,7 @@ "destination": 385, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "f45acd56-3151-5882-a2dc-91d3cf3872f5", "state": "In_Orbit", "fleet": null @@ -9926,6 +10013,7 @@ "destination": 366, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2af0f802-d675-5687-803e-378b14e9ff58", "state": "In_Orbit", "fleet": null @@ -9944,6 +10032,7 @@ "destination": 385, "speed": 0, "mass": 2, + "race": "KnightErrants", "id": "0343ea81-cc37-5562-bdc3-e00ecb42c577", "state": "In_Orbit", "fleet": null @@ -9962,6 +10051,7 @@ "destination": 298, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0a865579-da92-598a-8e05-03a7c891fc7d", "state": "In_Orbit", "fleet": null @@ -9980,6 +10070,7 @@ "destination": 119, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "93873466-3dbb-5f00-ac9f-0beedc7afe33", "state": "In_Orbit", "fleet": null @@ -9998,6 +10089,7 @@ "destination": 507, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "3ec33cc1-1e9c-5e0d-9c80-e584b286a82c", "state": "In_Orbit", "fleet": null @@ -10016,6 +10108,7 @@ "destination": 523, "speed": 0, "mass": 12.37, + "race": "KnightErrants", "id": "c3e70e95-3844-59d2-982e-415525119c5f", "state": "In_Orbit", "fleet": null @@ -10034,6 +10127,7 @@ "destination": 90, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "39cb4177-4aa4-58f4-99b1-70936f21a725", "state": "In_Orbit", "fleet": null @@ -10052,6 +10146,7 @@ "destination": 632, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "7f5b8b02-78ef-5ca3-8884-15fc461d1a4c", "state": "In_Orbit", "fleet": null @@ -10070,6 +10165,7 @@ "destination": 432, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "9681f47a-b083-5aef-aeab-6ead2bbeea80", "state": "In_Orbit", "fleet": null @@ -10088,6 +10184,7 @@ "destination": 20, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "3179ae8e-1dae-53f0-9245-1cf1370a9287", "state": "In_Orbit", "fleet": null @@ -10106,6 +10203,7 @@ "destination": 500, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "f6aaf22a-a5aa-50af-a535-9c90a757bb01", "state": "In_Orbit", "fleet": null @@ -10124,6 +10222,7 @@ "destination": 489, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "dd58d543-af7b-5e84-bfad-d164e99ec695", "state": "In_Orbit", "fleet": null @@ -10142,6 +10241,7 @@ "destination": 446, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "dba04345-ee08-54b5-abac-2c689810060a", "state": "In_Orbit", "fleet": null @@ -10160,6 +10260,7 @@ "destination": 332, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ffe92756-0d71-563f-8a65-579dbc46d30d", "state": "In_Orbit", "fleet": null @@ -10178,6 +10279,7 @@ "destination": 403, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "d41a5222-66c4-5837-bb17-b95ad029bcf8", "state": "In_Orbit", "fleet": null @@ -10196,6 +10298,7 @@ "destination": 649, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ff88b8a3-d203-509e-ac66-aac4d5d4a319", "state": "In_Orbit", "fleet": null @@ -10214,6 +10317,7 @@ "destination": 55, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2d864b2e-2417-5e55-be45-ba66075dfb51", "state": "In_Orbit", "fleet": null @@ -10232,6 +10336,7 @@ "destination": 25, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "8c435432-7389-55e1-af96-5b8887f36c93", "state": "In_Orbit", "fleet": null @@ -10250,6 +10355,7 @@ "destination": 641, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "93b7cd69-4f68-52cc-983e-cf825d5848ca", "state": "In_Orbit", "fleet": null @@ -10268,6 +10374,7 @@ "destination": 506, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "f68781ae-6827-53aa-806d-e922a6544e7e", "state": "In_Orbit", "fleet": null @@ -10286,6 +10393,7 @@ "destination": 685, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ad76f2da-a48a-5e80-8c17-1dede7bf6dad", "state": "In_Orbit", "fleet": null @@ -10304,6 +10412,7 @@ "destination": 385, "speed": 0, "mass": 149.54, + "race": "KnightErrants", "id": "29b1c5a5-0093-5785-bc61-ef3f3d869826", "state": "In_Orbit", "fleet": null @@ -10322,6 +10431,7 @@ "destination": 385, "speed": 0, "mass": 2, + "race": "KnightErrants", "id": "b6de7be5-54a0-5c2b-8e91-94e7fe2dd9dd", "state": "In_Orbit", "fleet": null @@ -10340,6 +10450,7 @@ "destination": 46, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "7d8c85ae-6a1d-5500-b2fc-cd354713117c", "state": "In_Orbit", "fleet": null @@ -10358,6 +10469,7 @@ "destination": 207, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "730a79a1-9432-5ab4-a5f9-f250892a5f87", "state": "In_Orbit", "fleet": null @@ -10376,6 +10488,7 @@ "destination": 459, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "52db3931-bb37-5372-a13a-23b875a669f6", "state": "In_Orbit", "fleet": null @@ -10394,6 +10507,7 @@ "destination": 196, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "31233623-71a9-5b29-858d-77dcb14a6c02", "state": "In_Orbit", "fleet": null @@ -10412,6 +10526,7 @@ "destination": 85, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "7053a306-faa3-50ca-934b-bbdb82db0da0", "state": "In_Orbit", "fleet": null @@ -10430,6 +10545,7 @@ "destination": 663, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0fe2d695-eb19-5286-aa75-88562126a37d", "state": "In_Orbit", "fleet": null @@ -10448,6 +10564,7 @@ "destination": 56, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "1d9bd461-a532-5752-bc9f-77a6d4e76d95", "state": "In_Orbit", "fleet": null @@ -10466,6 +10583,7 @@ "destination": 314, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "d1531732-0e91-5043-ba68-ecf6655aa6ed", "state": "In_Orbit", "fleet": null @@ -10484,6 +10602,7 @@ "destination": 690, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "b818a8cb-9e24-54a1-bbed-d69dafb2b7af", "state": "In_Orbit", "fleet": null @@ -10502,6 +10621,7 @@ "destination": 177, "speed": 0, "mass": 69.3, + "race": "KnightErrants", "id": "be2849c1-45a7-5cf3-995a-fc2d8057ce65", "state": "In_Orbit", "fleet": null @@ -10520,6 +10640,7 @@ "destination": 114, "speed": 0, "mass": 198.85, + "race": "KnightErrants", "id": "5f89851c-6aac-5389-88e0-4bd965eebdb7", "state": "In_Orbit", "fleet": null @@ -10538,6 +10659,7 @@ "destination": 177, "speed": 0, "mass": 69.3, + "race": "KnightErrants", "id": "962e84a3-7147-5754-8ee4-dacc5fc0a033", "state": "In_Orbit", "fleet": null @@ -10556,6 +10678,7 @@ "destination": 669, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "983fb832-b457-5c86-896e-65d0ba5c288e", "state": "In_Orbit", "fleet": null @@ -10574,6 +10697,7 @@ "destination": 525, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "91f25671-93af-5bfb-af6c-6af2e25b93cf", "state": "In_Orbit", "fleet": null @@ -10592,6 +10716,7 @@ "destination": 647, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "1210f8ec-7ca1-5c90-8ab2-8ed6555643f7", "state": "In_Orbit", "fleet": null @@ -10610,6 +10735,7 @@ "destination": 535, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "e98e75de-5217-5d02-8c68-8bcf4cbba97d", "state": "In_Orbit", "fleet": null @@ -10628,6 +10754,7 @@ "destination": 173, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "b6dbc0b9-d524-59e8-a4ea-0bbde0d7956e", "state": "In_Orbit", "fleet": null @@ -10646,6 +10773,7 @@ "destination": 150, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "bc283cda-1d59-5a33-9518-53a2550b92ec", "state": "In_Orbit", "fleet": null @@ -10664,6 +10792,7 @@ "destination": 79, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "bc7a17d7-938e-5032-bbdf-4777116f0abc", "state": "In_Orbit", "fleet": null @@ -10682,6 +10811,7 @@ "destination": 636, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "3c4f0aca-5af9-55ed-88ef-022cd4d2c27a", "state": "In_Orbit", "fleet": null @@ -10700,6 +10830,7 @@ "destination": 447, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "958eadda-28f4-5966-9dc4-8ba2a99162e6", "state": "In_Orbit", "fleet": null @@ -10718,6 +10849,7 @@ "destination": 385, "speed": 0, "mass": 99.39, + "race": "KnightErrants", "id": "57fc1395-9108-533d-a25a-13a001337d09", "state": "In_Orbit", "fleet": null @@ -10736,6 +10868,7 @@ "destination": 385, "speed": 0, "mass": 86.85, + "race": "KnightErrants", "id": "ac28588d-07e3-5b90-8fb6-6401cf38c7db", "state": "In_Orbit", "fleet": null @@ -10754,6 +10887,7 @@ "destination": 176, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "75cf0597-eb5d-5441-b83e-b75c41ba0aff", "state": "In_Orbit", "fleet": null @@ -10772,6 +10906,7 @@ "destination": 385, "speed": 0, "mass": 92.05, + "race": "KnightErrants", "id": "c9757095-f5c1-502c-b842-1fcd1b93c226", "state": "In_Orbit", "fleet": null @@ -10790,6 +10925,7 @@ "destination": 385, "speed": 0, "mass": 91.35, + "race": "KnightErrants", "id": "f4109d1a-9026-588f-b95e-d21b8b256130", "state": "In_Orbit", "fleet": null @@ -10808,6 +10944,7 @@ "destination": 296, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2a6941d9-e0c1-5c32-ab7d-a1f26fa74a59", "state": "In_Orbit", "fleet": null @@ -10826,6 +10963,7 @@ "destination": 108, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "17f51955-c4f5-5fc6-9339-82e024fa835a", "state": "In_Orbit", "fleet": null @@ -10844,6 +10982,7 @@ "destination": 385, "speed": 0, "mass": 99.39, + "race": "KnightErrants", "id": "532aee0b-6fb8-5c5c-ae3c-4f753e8aef20", "state": "In_Orbit", "fleet": null @@ -10862,6 +11001,7 @@ "destination": 385, "speed": 0, "mass": 86.85, + "race": "KnightErrants", "id": "9ca8a80e-624f-54fa-91ab-44d2badb4bfa", "state": "In_Orbit", "fleet": null @@ -10880,6 +11020,7 @@ "destination": 385, "speed": 0, "mass": 92.05, + "race": "KnightErrants", "id": "465703ad-7f21-520d-a3f6-4e49a72bb269", "state": "In_Orbit", "fleet": null @@ -10898,6 +11039,7 @@ "destination": 385, "speed": 0, "mass": 91.35, + "race": "KnightErrants", "id": "3abc074b-4046-580b-8c72-197e6fa42e23", "state": "In_Orbit", "fleet": null @@ -10916,6 +11058,7 @@ "destination": 385, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "49e9480a-6cfe-5ff5-99e4-8876bbec6882", "state": "In_Orbit", "fleet": null @@ -10934,6 +11077,7 @@ "destination": 338, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "70381094-4273-5ec5-9d97-3a2daead4864", "state": "In_Orbit", "fleet": null @@ -10952,6 +11096,7 @@ "destination": 222, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "6ee5da70-4255-5d2c-8ee2-f488a0118b96", "state": "In_Orbit", "fleet": null @@ -10970,6 +11115,7 @@ "destination": 15, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ac5cc7e9-4680-5078-80fd-edd56af41a11", "state": "In_Orbit", "fleet": null @@ -10988,6 +11134,7 @@ "destination": 251, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "3fb60e08-66f1-5e2f-91e1-7a387f0f0c1d", "state": "In_Orbit", "fleet": null @@ -11006,6 +11153,7 @@ "destination": 72, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "1258fd4e-661b-5c85-a2e7-f922a1aba59e", "state": "In_Orbit", "fleet": null @@ -11024,6 +11172,7 @@ "destination": 434, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "84775467-eac9-58b8-8466-88eb48cbba8c", "state": "In_Orbit", "fleet": null @@ -11042,6 +11191,7 @@ "destination": 340, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "cbcb1b66-59a9-59ca-b2b8-7abf154dc6a6", "state": "In_Orbit", "fleet": null @@ -11060,6 +11210,7 @@ "destination": 305, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ccd6f110-97a5-5081-a007-38f8e1387de7", "state": "In_Orbit", "fleet": null @@ -11078,6 +11229,7 @@ "destination": 409, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "10f8b324-13a3-5912-a887-64d0e503c591", "state": "In_Orbit", "fleet": null @@ -11096,6 +11248,7 @@ "destination": 624, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "6e6a5177-71de-5f7d-834d-4fe153bd0d73", "state": "In_Orbit", "fleet": null @@ -11114,6 +11267,7 @@ "destination": 385, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "7d90339f-488f-58d8-a118-737dfe82eb0f", "state": "In_Orbit", "fleet": null @@ -11132,6 +11286,7 @@ "destination": 385, "speed": 0, "mass": 2, + "race": "KnightErrants", "id": "7d56f165-c2aa-51fa-84d3-239dfa277f79", "state": "In_Orbit", "fleet": null @@ -11150,6 +11305,7 @@ "destination": 116, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "b66af58a-7039-57dd-96e6-f268d81dc80a", "state": "In_Orbit", "fleet": null @@ -11168,6 +11324,7 @@ "destination": 38, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2aec44f4-b3fc-53f7-af01-06565eda6fa7", "state": "In_Orbit", "fleet": null @@ -11186,6 +11343,7 @@ "destination": 438, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "e204b22e-3112-59d6-8571-2aecf3a0be4e", "state": "In_Orbit", "fleet": null @@ -11204,6 +11362,7 @@ "destination": 2, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "4c565d59-f50a-5509-8765-bcaf42f056ec", "state": "In_Orbit", "fleet": null @@ -11222,6 +11381,7 @@ "destination": 421, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "51288ce4-b69d-561a-a4a0-a4b408831118", "state": "In_Orbit", "fleet": null @@ -11240,6 +11400,7 @@ "destination": 569, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "f3aed80b-f85f-5cd1-b6c5-e5e99c03918d", "state": "In_Orbit", "fleet": null @@ -11258,6 +11419,7 @@ "destination": 436, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "e59329f5-4a55-59af-b48e-688d7dbb94b1", "state": "In_Orbit", "fleet": null @@ -11276,6 +11438,7 @@ "destination": 572, "speed": 0, "mass": 24.75, + "race": "KnightErrants", "id": "2e57764e-c658-562c-92da-299af97960d7", "state": "In_Orbit", "fleet": null @@ -11296,6 +11459,7 @@ "range": 152.03, "speed": 0, "mass": 24.72, + "race": "KnightErrants", "id": "8a4edf71-a9c0-5c2d-ab80-d7f7842e3fd2", "state": "In_Space", "fleet": null @@ -11316,6 +11480,7 @@ "range": 257.28, "speed": 0, "mass": 16.5, + "race": "KnightErrants", "id": "d0f02b60-afe1-5ad0-95f7-416c28486d19", "state": "In_Space", "fleet": null @@ -11334,6 +11499,7 @@ "destination": 176, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "61dd202c-344a-595a-afcb-44a33ed76787", "state": "In_Orbit", "fleet": null @@ -11352,6 +11518,7 @@ "destination": 223, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "291c8956-14ab-5283-936c-08f84bf97a80", "state": "In_Orbit", "fleet": null @@ -11370,6 +11537,7 @@ "destination": 447, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "d72f12bc-7a7f-5dd0-bcab-0881081c1806", "state": "In_Orbit", "fleet": null @@ -11388,6 +11556,7 @@ "destination": 523, "speed": 0, "mass": 7.1, + "race": "KnightErrants", "id": "13a322b6-93d4-53c8-ab6b-02b6bafc575b", "state": "In_Orbit", "fleet": null @@ -11406,6 +11575,7 @@ "destination": 636, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "d39b1831-22e6-5131-bd25-4690f4277a23", "state": "In_Orbit", "fleet": null @@ -11424,6 +11594,7 @@ "destination": 685, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "f96cd083-0e78-56e2-a2fd-79ca77ea635f", "state": "In_Orbit", "fleet": null @@ -11443,7 +11614,8 @@ "load": 0, "destination": 130, "speed": 0, - "mass": 19.8 + "mass": 19.8, + "race": "Monstrai" }, { "number": 1, @@ -11458,7 +11630,8 @@ "load": 0, "destination": 108, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -11473,7 +11646,8 @@ "load": 0, "destination": 636, "speed": 0, - "mass": 198 + "mass": 198, + "race": "Monstrai" }, { "number": 1, @@ -11488,7 +11662,8 @@ "load": 0, "destination": 636, "speed": 0, - "mass": 191.9 + "mass": 191.9, + "race": "Monstrai" }, { "number": 1, @@ -11503,7 +11678,8 @@ "load": 0, "destination": 636, "speed": 0, - "mass": 156.94 + "mass": 156.94, + "race": "Monstrai" }, { "number": 1, @@ -11518,7 +11694,8 @@ "load": 0, "destination": 79, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -11533,7 +11710,8 @@ "load": 0, "destination": 636, "speed": 0, - "mass": 95.96 + "mass": 95.96, + "race": "Monstrai" }, { "number": 1, @@ -11548,7 +11726,8 @@ "load": 0, "destination": 436, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 46, @@ -11563,7 +11742,8 @@ "load": 0, "destination": 636, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 43, @@ -11578,7 +11758,8 @@ "load": 0, "destination": 636, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 30, @@ -11593,7 +11774,8 @@ "load": 0, "destination": 636, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -11608,7 +11790,8 @@ "load": 0, "destination": 409, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -11623,7 +11806,8 @@ "load": 0, "destination": 438, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -11638,7 +11822,8 @@ "load": 0, "destination": 569, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -11653,7 +11838,8 @@ "load": 0, "destination": 624, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -11668,7 +11854,8 @@ "load": 0, "destination": 434, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -11683,7 +11870,8 @@ "load": 0, "destination": 119, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 45, @@ -11698,7 +11886,8 @@ "load": 0, "destination": 636, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 10, @@ -11713,7 +11902,8 @@ "load": 0, "destination": 636, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 21, @@ -11728,7 +11918,8 @@ "load": 0, "destination": 119, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 23, @@ -11743,7 +11934,8 @@ "load": 0, "destination": 119, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -11758,7 +11950,8 @@ "load": 0, "destination": 305, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -11773,7 +11966,8 @@ "load": 0, "destination": 685, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -11788,7 +11982,8 @@ "load": 0, "destination": 222, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -11803,7 +11998,8 @@ "load": 0, "destination": 340, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -11818,7 +12014,8 @@ "load": 0, "destination": 25, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -11833,7 +12030,8 @@ "load": 0, "destination": 116, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -11848,7 +12046,8 @@ "load": 0, "destination": 647, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -11863,7 +12062,8 @@ "load": 0, "destination": 636, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -11878,7 +12078,8 @@ "load": 0, "destination": 119, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -11893,7 +12094,8 @@ "load": 0, "destination": 85, "speed": 0, - "mass": 98.03 + "mass": 98.03, + "race": "TwelvePointedCross" }, { "number": 1, @@ -11908,7 +12110,8 @@ "load": 199.99, "destination": 663, "speed": 0, - "mass": 298.02 + "mass": 298.02, + "race": "TwelvePointedCross" }, { "number": 1, @@ -11923,7 +12126,8 @@ "load": 0, "destination": 14, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 2, @@ -11938,7 +12142,8 @@ "load": 0, "destination": 690, "speed": 0, - "mass": 49.4 + "mass": 49.4, + "race": "TwelvePointedCross" }, { "number": 1, @@ -11953,7 +12158,8 @@ "load": 0, "destination": 207, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 1, @@ -11968,7 +12174,8 @@ "load": 0, "destination": 663, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 41, @@ -11983,7 +12190,8 @@ "load": 0, "destination": 479, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 29, @@ -11998,7 +12206,8 @@ "load": 0, "destination": 673, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 1, @@ -12013,7 +12222,8 @@ "load": 0, "destination": 691, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 2, @@ -12028,7 +12238,8 @@ "load": 34, "destination": 459, "speed": 0, - "mass": 83.43 + "mass": 83.43, + "race": "TwelvePointedCross" }, { "number": 1, @@ -12043,7 +12254,8 @@ "load": 0, "destination": 12, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 1, @@ -12058,7 +12270,8 @@ "load": 0, "destination": 108, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 1, @@ -12073,7 +12286,8 @@ "load": 0, "destination": 366, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 1, @@ -12088,7 +12302,8 @@ "load": 0, "destination": 130, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 1, @@ -12103,7 +12318,8 @@ "load": 0, "destination": 253, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 1, @@ -12118,7 +12334,8 @@ "load": 0, "destination": 56, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 1, @@ -12133,7 +12350,8 @@ "load": 0, "destination": 314, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 1, @@ -12148,7 +12366,8 @@ "load": 0, "destination": 647, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 1, @@ -12163,7 +12382,8 @@ "load": 0, "destination": 119, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 1, @@ -12178,7 +12398,8 @@ "load": 0, "destination": 673, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 1, @@ -12193,7 +12414,8 @@ "load": 0, "destination": 421, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12208,7 +12430,8 @@ "load": 0, "destination": 111, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12223,7 +12446,8 @@ "load": 0, "destination": 559, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12238,7 +12462,8 @@ "load": 0, "destination": 370, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12253,7 +12478,8 @@ "load": 0, "destination": 596, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12268,7 +12494,8 @@ "load": 0, "destination": 513, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12283,7 +12510,8 @@ "load": 0, "destination": 9, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12298,7 +12526,8 @@ "load": 0, "destination": 95, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12313,7 +12542,8 @@ "load": 0, "destination": 523, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12328,7 +12558,8 @@ "load": 0, "destination": 38, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12343,7 +12574,8 @@ "load": 0, "destination": 114, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12358,7 +12590,8 @@ "load": 0, "destination": 206, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12373,7 +12606,8 @@ "load": 0, "destination": 190, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12388,7 +12622,8 @@ "load": 0, "destination": 654, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12403,7 +12638,8 @@ "load": 0, "destination": 679, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12418,7 +12654,8 @@ "load": 0, "destination": 176, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12433,7 +12670,8 @@ "load": 0, "destination": 622, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12448,7 +12686,8 @@ "load": 0, "destination": 447, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12463,7 +12702,8 @@ "load": 0, "destination": 2, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12478,7 +12718,8 @@ "load": 0, "destination": 338, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12493,7 +12734,8 @@ "load": 0, "destination": 87, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12508,7 +12750,8 @@ "load": 0, "destination": 474, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12523,7 +12766,8 @@ "load": 0, "destination": 183, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12538,7 +12782,8 @@ "load": 0, "destination": 17, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12553,7 +12798,8 @@ "load": 0, "destination": 296, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12568,7 +12814,8 @@ "load": 0, "destination": 461, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12583,7 +12830,8 @@ "load": 0, "destination": 635, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12598,7 +12846,8 @@ "load": 0, "destination": 693, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12613,7 +12862,8 @@ "load": 0, "destination": 292, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12628,7 +12878,8 @@ "load": 0, "destination": 369, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12643,7 +12894,8 @@ "load": 0, "destination": 394, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12658,7 +12910,8 @@ "load": 0, "destination": 231, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12673,7 +12926,8 @@ "load": 0, "destination": 268, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12688,7 +12942,8 @@ "load": 0, "destination": 495, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12703,7 +12958,8 @@ "load": 0, "destination": 282, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12718,7 +12974,8 @@ "load": 0, "destination": 223, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12733,7 +12990,8 @@ "load": 0, "destination": 504, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12748,7 +13006,8 @@ "load": 0, "destination": 549, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12763,7 +13022,8 @@ "load": 0, "destination": 49, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12778,7 +13038,8 @@ "load": 0, "destination": 45, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12793,7 +13054,8 @@ "load": 0, "destination": 431, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12808,7 +13070,8 @@ "load": 0, "destination": 243, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12823,7 +13086,8 @@ "load": 0, "destination": 141, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12838,7 +13102,8 @@ "load": 0, "destination": 552, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12853,7 +13118,8 @@ "load": 0, "destination": 519, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12868,7 +13134,8 @@ "load": 0, "destination": 391, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12883,7 +13150,8 @@ "load": 0, "destination": 191, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12898,7 +13166,8 @@ "load": 0, "destination": 612, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12913,7 +13182,8 @@ "load": 0, "destination": 697, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12928,7 +13198,8 @@ "load": 0, "destination": 602, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12943,7 +13214,8 @@ "load": 0, "destination": 28, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12958,7 +13230,8 @@ "load": 0, "destination": 90, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -12973,7 +13246,8 @@ "load": 0, "destination": 268, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Orla" }, { "number": 1, @@ -12988,7 +13262,8 @@ "load": 0, "destination": 268, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Orla" }, { "number": 3, @@ -13003,7 +13278,8 @@ "load": 0, "destination": 95, "speed": 0, - "mass": 99 + "mass": 99, + "race": "Orla" }, { "number": 1, @@ -13018,7 +13294,8 @@ "load": 0, "destination": 203, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -13033,7 +13310,8 @@ "load": 0, "destination": 530, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -13048,7 +13326,8 @@ "load": 0, "destination": 95, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -13063,7 +13342,8 @@ "load": 0, "destination": 641, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -13078,7 +13358,8 @@ "load": 0, "destination": 338, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -13093,7 +13374,8 @@ "load": 0, "destination": 139, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -13108,7 +13390,8 @@ "load": 0, "destination": 506, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -13123,7 +13406,8 @@ "load": 0, "destination": 532, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -13138,7 +13422,8 @@ "load": 0, "destination": 38, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -13153,7 +13438,8 @@ "load": 0, "destination": 298, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -13168,7 +13454,8 @@ "load": 0, "destination": 521, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -13183,7 +13470,8 @@ "load": 0, "destination": 12, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -13198,7 +13486,8 @@ "load": 0, "destination": 507, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -13213,7 +13502,8 @@ "load": 0, "destination": 396, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -13228,7 +13518,8 @@ "load": 0, "destination": 669, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -13243,7 +13534,8 @@ "load": 0, "destination": 296, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -13258,7 +13550,8 @@ "load": 0, "destination": 17, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -13273,7 +13566,8 @@ "load": 0, "destination": 79, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -13288,7 +13582,8 @@ "load": 0, "destination": 673, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -13303,7 +13598,8 @@ "load": 0, "destination": 69, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -13318,7 +13614,8 @@ "load": 0, "destination": 87, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -13333,7 +13630,8 @@ "load": 0, "destination": 662, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -13348,7 +13646,8 @@ "load": 0, "destination": 425, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 28, @@ -13363,7 +13662,8 @@ "load": 0, "destination": 24, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -13378,7 +13678,8 @@ "load": 0, "destination": 479, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -13393,7 +13694,8 @@ "load": 0, "destination": 130, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13408,7 +13710,8 @@ "load": 0, "destination": 366, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13423,7 +13726,8 @@ "load": 0, "destination": 12, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13438,7 +13742,8 @@ "load": 0, "destination": 253, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13453,7 +13758,8 @@ "load": 0, "destination": 207, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13468,7 +13774,8 @@ "load": 0, "destination": 314, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13483,7 +13790,8 @@ "load": 0, "destination": 108, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13498,7 +13806,8 @@ "load": 0, "destination": 459, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13513,7 +13822,8 @@ "load": 0, "destination": 25, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13528,7 +13838,8 @@ "load": 0, "destination": 108, "speed": 0, - "mass": 100 + "mass": 100, + "race": "Zodiac" }, { "number": 1, @@ -13543,7 +13854,8 @@ "load": 0, "destination": 196, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13558,7 +13870,8 @@ "load": 0, "destination": 56, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13573,7 +13886,8 @@ "load": 0, "destination": 14, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13588,7 +13902,8 @@ "load": 0, "destination": 691, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13603,7 +13918,8 @@ "load": 0, "destination": 636, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13618,7 +13934,8 @@ "load": 1.05, "destination": 108, "speed": 0, - "mass": 195.05 + "mass": 195.05, + "race": "Zodiac" }, { "number": 9, @@ -13633,7 +13950,8 @@ "load": 1.05, "destination": 647, "speed": 0, - "mass": 5.55 + "mass": 5.55, + "race": "Zodiac" }, { "number": 1, @@ -13648,7 +13966,8 @@ "load": 0, "destination": 119, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13663,7 +13982,8 @@ "load": 0, "destination": 532, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13678,7 +13998,8 @@ "load": 1.05, "destination": 108, "speed": 0, - "mass": 107.05 + "mass": 107.05, + "race": "Zodiac" }, { "number": 2, @@ -13693,7 +14014,8 @@ "load": 0, "destination": 647, "speed": 0, - "mass": 4.5 + "mass": 4.5, + "race": "Zodiac" }, { "number": 1, @@ -13708,7 +14030,8 @@ "load": 0, "destination": 385, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13723,7 +14046,8 @@ "load": 0, "destination": 438, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13738,7 +14062,8 @@ "load": 0, "destination": 669, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13753,7 +14078,8 @@ "load": 0, "destination": 85, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13768,7 +14094,8 @@ "load": 0, "destination": 87, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13783,7 +14110,8 @@ "load": 0, "destination": 305, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13798,7 +14126,8 @@ "load": 0, "destination": 569, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13813,7 +14142,8 @@ "load": 0, "destination": 116, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13828,7 +14158,8 @@ "load": 0, "destination": 139, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13843,7 +14174,8 @@ "load": 0, "destination": 15, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13858,7 +14190,8 @@ "load": 0, "destination": 507, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13873,7 +14206,8 @@ "load": 0, "destination": 425, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13888,7 +14222,8 @@ "load": 0, "destination": 409, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13903,7 +14238,8 @@ "load": 0, "destination": 434, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13918,7 +14254,8 @@ "load": 0, "destination": 624, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13933,7 +14270,8 @@ "load": 0, "destination": 340, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13948,7 +14286,8 @@ "load": 0, "destination": 436, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13963,7 +14302,8 @@ "load": 0, "destination": 79, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13978,7 +14318,8 @@ "load": 0, "destination": 641, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -13993,7 +14334,8 @@ "load": 0, "destination": 222, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14008,7 +14350,8 @@ "load": 0, "destination": 17, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14023,7 +14366,8 @@ "load": 0, "destination": 282, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14038,7 +14382,8 @@ "load": 0, "destination": 296, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14053,7 +14398,8 @@ "load": 0, "destination": 338, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14068,7 +14414,8 @@ "load": 0, "destination": 38, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 2, @@ -14083,7 +14430,8 @@ "load": 1.05, "destination": 108, "speed": 0, - "mass": 96.55 + "mass": 96.55, + "race": "Zodiac" }, { "number": 330, @@ -14098,7 +14446,8 @@ "load": 0, "destination": 108, "speed": 0, - "mass": 2 + "mass": 2, + "race": "Zodiac" }, { "number": 1, @@ -14113,7 +14462,8 @@ "load": 0, "destination": 447, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14128,7 +14478,8 @@ "load": 0, "destination": 679, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14143,7 +14494,8 @@ "load": 0, "destination": 114, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14158,7 +14510,8 @@ "load": 0, "destination": 223, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14173,7 +14526,8 @@ "load": 0, "destination": 176, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14188,7 +14542,8 @@ "load": 0, "destination": 685, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14203,7 +14558,8 @@ "load": 0, "destination": 690, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14218,7 +14574,8 @@ "load": 0, "destination": 647, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 2, @@ -14233,7 +14590,8 @@ "load": 0, "destination": 116, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 165, @@ -14248,7 +14606,8 @@ "load": 0, "destination": 108, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14263,7 +14622,8 @@ "load": 0, "destination": 461, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14278,7 +14638,8 @@ "load": 0, "destination": 523, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14293,7 +14654,8 @@ "load": 0, "destination": 458, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14308,7 +14670,8 @@ "load": 0, "destination": 177, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14323,7 +14686,8 @@ "load": 0, "destination": 622, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14338,7 +14702,8 @@ "load": 0, "destination": 572, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14353,7 +14718,8 @@ "load": 0, "destination": 558, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14368,7 +14734,8 @@ "load": 0, "destination": 298, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 33, @@ -14383,7 +14750,8 @@ "load": 0, "destination": 108, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14398,7 +14766,8 @@ "load": 1, "destination": 108, "speed": 0, - "mass": 236 + "mass": 236, + "race": "Zodiac" }, { "number": 1, @@ -14413,7 +14782,8 @@ "load": 0, "destination": 663, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 20, @@ -14428,7 +14798,8 @@ "load": 0, "destination": 108, "speed": 0, - "mass": 2 + "mass": 2, + "race": "Zodiac" }, { "number": 1, @@ -14443,7 +14814,8 @@ "load": 0, "destination": 673, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14458,7 +14830,8 @@ "load": 0, "destination": 203, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14473,7 +14846,8 @@ "load": 0, "destination": 530, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14488,7 +14862,8 @@ "load": 0, "destination": 116, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14503,7 +14878,8 @@ "load": 205.84, "destination": 116, "speed": 0, - "mass": 440.84 + "mass": 440.84, + "race": "Zodiac" }, { "number": 1, @@ -14518,7 +14894,8 @@ "load": 0, "destination": 116, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14533,7 +14910,8 @@ "load": 0, "destination": 119, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14548,7 +14926,8 @@ "load": 0, "destination": 647, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14563,7 +14942,8 @@ "load": 0, "destination": 119, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -14578,7 +14958,8 @@ "load": 0, "destination": 690, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Oselots" }, { "number": 1, @@ -14593,7 +14974,8 @@ "load": 0, "destination": 85, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Oselots" }, { "number": 1, @@ -14608,7 +14990,8 @@ "load": 0, "destination": 108, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Oselots" }, { "number": 1, @@ -14623,7 +15006,8 @@ "load": 0, "destination": 56, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Oselots" }, { "number": 1, @@ -14638,7 +15022,8 @@ "load": 0, "destination": 207, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Oselots" }, { "number": 1, @@ -14653,7 +15038,8 @@ "load": 0, "destination": 314, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Oselots" }, { "number": 1, @@ -14668,7 +15054,8 @@ "load": 0, "destination": 459, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Oselots" }, { "number": 1, @@ -14683,7 +15070,8 @@ "load": 0, "destination": 663, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Oselots" }, { "number": 1, @@ -14698,7 +15086,8 @@ "load": 0, "destination": 196, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Oselots" }, { "number": 1, @@ -14713,7 +15102,8 @@ "load": 0, "destination": 436, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -14728,7 +15118,8 @@ "load": 0, "destination": 569, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -14743,7 +15134,8 @@ "load": 0, "destination": 25, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -14758,7 +15150,8 @@ "load": 0, "destination": 438, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -14773,7 +15166,8 @@ "load": 0, "destination": 130, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -14788,7 +15182,8 @@ "load": 0, "destination": 116, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -14803,7 +15198,8 @@ "load": 0, "destination": 409, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -14818,7 +15214,8 @@ "load": 0, "destination": 305, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -14833,7 +15230,8 @@ "load": 0, "destination": 624, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -14848,7 +15246,8 @@ "load": 0, "destination": 340, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -14863,7 +15262,8 @@ "load": 0, "destination": 434, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -14878,7 +15278,8 @@ "load": 0, "destination": 253, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -14893,7 +15294,8 @@ "load": 0, "destination": 108, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -14908,7 +15310,8 @@ "load": 0, "destination": 119, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -14923,7 +15326,8 @@ "load": 0, "destination": 366, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -14938,7 +15342,8 @@ "load": 0, "destination": 222, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -14953,7 +15358,8 @@ "load": 0, "destination": 15, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -14968,7 +15374,8 @@ "load": 0, "destination": 72, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -14983,7 +15390,8 @@ "load": 0, "destination": 251, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 195, @@ -14998,7 +15406,8 @@ "load": 0, "destination": 72, "speed": 0, - "mass": 2 + "mass": 2, + "race": "Flagist" }, { "number": 201, @@ -15013,7 +15422,8 @@ "load": 0, "destination": 72, "speed": 0, - "mass": 2 + "mass": 2, + "race": "Flagist" }, { "number": 1, @@ -15028,7 +15438,8 @@ "load": 0, "destination": 72, "speed": 0, - "mass": 355.43 + "mass": 355.43, + "race": "Flagist" }, { "number": 1, @@ -15043,7 +15454,8 @@ "load": 1, "destination": 72, "speed": 0, - "mass": 99.83 + "mass": 99.83, + "race": "Flagist" }, { "number": 1, @@ -15058,7 +15470,8 @@ "load": 1, "destination": 72, "speed": 0, - "mass": 161.6 + "mass": 161.6, + "race": "Flagist" }, { "number": 1, @@ -15073,7 +15486,8 @@ "load": 1.05, "destination": 72, "speed": 0, - "mass": 99.88 + "mass": 99.88, + "race": "Flagist" }, { "number": 1, @@ -15088,7 +15502,8 @@ "load": 0.95, "destination": 72, "speed": 0, - "mass": 178.56 + "mass": 178.56, + "race": "Flagist" }, { "number": 88, @@ -15103,7 +15518,8 @@ "load": 0, "destination": 72, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15118,7 +15534,8 @@ "load": 0, "destination": 632, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15133,7 +15550,8 @@ "load": 67.08, "destination": 222, "speed": 0, - "mass": 154.83 + "mass": 154.83, + "race": "Flagist" }, { "number": 1, @@ -15148,7 +15566,8 @@ "load": 82.47, "destination": 569, "speed": 0, - "mass": 149.03 + "mass": 149.03, + "race": "Flagist" }, { "number": 1, @@ -15163,7 +15582,8 @@ "load": 0, "destination": 436, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 91, @@ -15178,7 +15598,8 @@ "load": 0, "destination": 72, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15193,7 +15614,8 @@ "load": 0, "destination": 12, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15208,7 +15630,8 @@ "load": 0, "destination": 305, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15223,7 +15646,8 @@ "load": 0, "destination": 340, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15238,7 +15662,8 @@ "load": 0, "destination": 436, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15253,7 +15678,8 @@ "load": 0, "destination": 624, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15268,7 +15694,8 @@ "load": 0, "destination": 298, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15283,7 +15710,8 @@ "load": 0, "destination": 139, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15298,7 +15726,8 @@ "load": 0, "destination": 532, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15313,7 +15742,8 @@ "load": 0, "destination": 507, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15328,7 +15758,8 @@ "load": 0, "destination": 669, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15343,7 +15774,8 @@ "load": 0, "destination": 385, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15358,7 +15790,8 @@ "load": 0, "destination": 641, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15373,7 +15806,8 @@ "load": 0.9, "destination": 385, "speed": 0, - "mass": 5.75 + "mass": 5.75, + "race": "Flagist" }, { "number": 1, @@ -15388,7 +15822,8 @@ "load": 1, "destination": 251, "speed": 0, - "mass": 5.83 + "mass": 5.83, + "race": "Flagist" }, { "number": 1, @@ -15403,7 +15838,8 @@ "load": 1, "destination": 15, "speed": 0, - "mass": 5.83 + "mass": 5.83, + "race": "Flagist" }, { "number": 1, @@ -15418,7 +15854,8 @@ "load": 1, "destination": 72, "speed": 0, - "mass": 5.83 + "mass": 5.83, + "race": "Flagist" }, { "number": 51, @@ -15433,7 +15870,8 @@ "load": 0, "destination": 72, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 201, @@ -15448,7 +15886,8 @@ "load": 0, "destination": 72, "speed": 0, - "mass": 2 + "mass": 2, + "race": "Flagist" }, { "number": 1, @@ -15463,7 +15902,8 @@ "load": 0, "destination": 222, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15478,7 +15918,8 @@ "load": 0, "destination": 305, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15493,7 +15934,8 @@ "load": 0, "destination": 340, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15508,7 +15950,8 @@ "load": 0, "destination": 409, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15523,7 +15966,8 @@ "load": 0, "destination": 434, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15538,7 +15982,8 @@ "load": 0, "destination": 624, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15553,7 +15998,8 @@ "load": 0, "destination": 647, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15568,7 +16014,8 @@ "load": 0, "destination": 79, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15583,7 +16030,8 @@ "load": 0, "destination": 222, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15598,7 +16046,8 @@ "load": 0, "destination": 305, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15613,7 +16062,8 @@ "load": 0, "destination": 340, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15628,7 +16078,8 @@ "load": 0, "destination": 409, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15643,7 +16094,8 @@ "load": 0, "destination": 434, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15658,7 +16110,8 @@ "load": 0, "destination": 438, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15673,7 +16126,8 @@ "load": 0, "destination": 569, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15688,7 +16142,8 @@ "load": 0, "destination": 624, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15703,7 +16158,8 @@ "load": 0, "destination": 649, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15718,7 +16174,8 @@ "load": 0, "destination": 403, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15733,7 +16190,8 @@ "load": 0, "destination": 150, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15748,7 +16206,8 @@ "load": 0, "destination": 332, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15763,7 +16222,8 @@ "load": 0, "destination": 446, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -15778,7 +16238,8 @@ "load": 0, "destination": 15, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -15793,7 +16254,8 @@ "load": 0, "destination": 72, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -15808,7 +16270,8 @@ "load": 0, "destination": 222, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -15823,7 +16286,8 @@ "load": 0, "destination": 251, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -15838,7 +16302,8 @@ "load": 0, "destination": 305, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -15853,7 +16318,8 @@ "load": 0, "destination": 340, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -15868,7 +16334,8 @@ "load": 0, "destination": 409, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -15883,7 +16350,8 @@ "load": 0, "destination": 434, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -15898,7 +16366,8 @@ "load": 0, "destination": 569, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -15913,7 +16382,8 @@ "load": 0, "destination": 624, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15928,7 +16398,8 @@ "load": 0, "destination": 610, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15943,7 +16414,8 @@ "load": 0, "destination": 535, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15958,7 +16430,8 @@ "load": 0, "destination": 55, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15973,7 +16446,8 @@ "load": 0, "destination": 525, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -15988,7 +16462,8 @@ "load": 0, "destination": 173, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -16003,7 +16478,8 @@ "load": 0, "destination": 500, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -16018,7 +16494,8 @@ "load": 0, "destination": 489, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -16033,7 +16510,8 @@ "load": 0, "destination": 458, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -16048,7 +16526,8 @@ "load": 0, "destination": 177, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -16063,7 +16542,8 @@ "load": 0, "destination": 523, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -16078,7 +16558,8 @@ "load": 0, "destination": 572, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -16093,7 +16574,8 @@ "load": 0, "destination": 622, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -16108,7 +16590,8 @@ "load": 0, "destination": 558, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -16123,7 +16606,8 @@ "load": 0, "destination": 461, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -16138,7 +16622,8 @@ "load": 0, "destination": 685, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -16153,7 +16638,8 @@ "load": 0, "destination": 636, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -16168,7 +16654,8 @@ "load": 0, "destination": 385, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -16183,7 +16670,8 @@ "load": 0, "destination": 95, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Manya" }, { "number": 1, @@ -16198,7 +16686,8 @@ "load": 0, "destination": 396, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Manya" }, { "number": 1, @@ -16213,7 +16702,8 @@ "load": 0, "destination": 203, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Manya" }, { "number": 1, @@ -16228,7 +16718,8 @@ "load": 0, "destination": 673, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Manya" }, { "number": 1, @@ -16243,7 +16734,8 @@ "load": 0, "destination": 2, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bupyc" }, { "number": 1, @@ -16258,7 +16750,8 @@ "load": 0, "destination": 391, "speed": 0, - "mass": 2 + "mass": 2, + "race": "Bupyc" }, { "number": 1, @@ -16273,7 +16766,8 @@ "load": 0, "destination": 90, "speed": 0, - "mass": 2 + "mass": 2, + "race": "Bupyc" }, { "number": 1, @@ -16288,7 +16782,8 @@ "load": 0, "destination": 2, "speed": 0, - "mass": 2 + "mass": 2, + "race": "Bupyc" }, { "number": 9, @@ -16303,7 +16798,8 @@ "load": 0, "destination": 2, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bupyc" }, { "number": 1, @@ -16318,7 +16814,8 @@ "load": 0, "destination": 504, "speed": 0, - "mass": 1 + "mass": 1, + "race": "CosmicMonkeys" }, { "number": 1, @@ -16333,7 +16830,8 @@ "load": 0, "destination": 612, "speed": 0, - "mass": 1 + "mass": 1, + "race": "CosmicMonkeys" }, { "number": 1, @@ -16348,7 +16846,8 @@ "load": 0.5, "destination": 504, "speed": 0, - "mass": 17 + "mass": 17, + "race": "Koreans" }, { "number": 1, @@ -16363,7 +16862,8 @@ "load": 19, "destination": 504, "speed": 0, - "mass": 117.96 + "mass": 117.96, + "race": "Koreans" }, { "number": 1, @@ -16378,7 +16878,8 @@ "load": 10, "destination": 421, "speed": 0, - "mass": 59.46 + "mass": 59.46, + "race": "Koreans" }, { "number": 1, @@ -16393,7 +16894,8 @@ "load": 0, "destination": 421, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -16408,7 +16910,8 @@ "load": 66.01, "destination": 421, "speed": 0, - "mass": 165.01 + "mass": 165.01, + "race": "Koreans" }, { "number": 1, @@ -16423,7 +16926,8 @@ "load": 0, "destination": 206, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -16438,7 +16942,8 @@ "load": 0, "destination": 111, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -16453,7 +16958,8 @@ "load": 0, "destination": 552, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -16468,7 +16974,8 @@ "load": 0, "destination": 549, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -16483,7 +16990,8 @@ "load": 0, "destination": 28, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -16498,7 +17006,8 @@ "load": 0, "destination": 596, "speed": 0, - "mass": 98.91 + "mass": 98.91, + "race": "Koreans" }, { "number": 1, @@ -16513,7 +17022,8 @@ "load": 0, "destination": 596, "speed": 0, - "mass": 49.43 + "mass": 49.43, + "race": "Koreans" }, { "number": 1, @@ -16528,7 +17038,8 @@ "load": 0, "destination": 190, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -16543,7 +17054,8 @@ "load": 0, "destination": 431, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -16558,7 +17070,8 @@ "load": 1.05, "destination": 654, "speed": 0, - "mass": 198.42 + "mass": 198.42, + "race": "Koreans" }, { "number": 1, @@ -16573,7 +17086,8 @@ "load": 0, "destination": 394, "speed": 0, - "mass": 66.41 + "mass": 66.41, + "race": "Koreans" }, { "number": 1, @@ -16588,7 +17102,8 @@ "load": 0, "destination": 183, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -16603,7 +17118,8 @@ "load": 0, "destination": 559, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -16618,7 +17134,8 @@ "load": 0, "destination": 679, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -16633,7 +17150,8 @@ "load": 16.88, "destination": 421, "speed": 0, - "mass": 90.48 + "mass": 90.48, + "race": "Koreans" }, { "number": 1, @@ -16648,7 +17166,8 @@ "load": 0, "destination": 693, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -16663,7 +17182,8 @@ "load": 0, "destination": 447, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -16678,7 +17198,8 @@ "load": 0, "destination": 369, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -16693,7 +17214,8 @@ "load": 0, "destination": 223, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -16708,7 +17230,8 @@ "load": 71.64, "destination": 504, "speed": 0, - "mass": 170.64 + "mass": 170.64, + "race": "Koreans" }, { "number": 1, @@ -16723,7 +17246,8 @@ "load": 0, "destination": 231, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 3, @@ -16738,7 +17262,8 @@ "load": 0, "destination": 612, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 3, @@ -16753,7 +17278,8 @@ "load": 0, "destination": 697, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -16768,7 +17294,8 @@ "load": 0, "destination": 612, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -16783,7 +17310,8 @@ "load": 0, "destination": 697, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 16, @@ -16798,7 +17326,8 @@ "load": 0, "destination": 612, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -16813,7 +17342,8 @@ "load": 0, "destination": 697, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -16828,7 +17358,8 @@ "load": 0, "destination": 9, "speed": 0, - "mass": 68.19 + "mass": 68.19, + "race": "Koreans" }, { "number": 1, @@ -16843,7 +17374,8 @@ "load": 0.9, "destination": 9, "speed": 0, - "mass": 195.79 + "mass": 195.79, + "race": "Koreans" }, { "number": 1, @@ -16858,7 +17390,8 @@ "load": 1.05, "destination": 693, "speed": 0, - "mass": 70.91 + "mass": 70.91, + "race": "Koreans" }, { "number": 2, @@ -16873,7 +17406,8 @@ "load": 0, "destination": 693, "speed": 0, - "mass": 87.12 + "mass": 87.12, + "race": "Koreans" }, { "number": 91, @@ -16888,7 +17422,8 @@ "load": 0, "destination": 369, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 29, @@ -16903,7 +17438,8 @@ "load": 0, "destination": 292, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 40, @@ -16918,7 +17454,8 @@ "load": 0, "destination": 693, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -16933,7 +17470,8 @@ "load": 1, "destination": 693, "speed": 0, - "mass": 148.18 + "mass": 148.18, + "race": "Koreans" }, { "number": 1, @@ -16948,7 +17486,8 @@ "load": 0.9, "destination": 635, "speed": 0, - "mass": 99.9 + "mass": 99.9, + "race": "Koreans" }, { "number": 1, @@ -16963,7 +17502,8 @@ "load": 1, "destination": 369, "speed": 0, - "mass": 195.99 + "mass": 195.99, + "race": "Koreans" }, { "number": 1, @@ -16978,7 +17518,8 @@ "load": 1, "destination": 369, "speed": 0, - "mass": 222.52 + "mass": 222.52, + "race": "Koreans" }, { "number": 1, @@ -16993,7 +17534,8 @@ "load": 0, "destination": 654, "speed": 0, - "mass": 68.19 + "mass": 68.19, + "race": "Koreans" }, { "number": 1, @@ -17008,7 +17550,8 @@ "load": 0, "destination": 292, "speed": 0, - "mass": 73.54 + "mass": 73.54, + "race": "Koreans" }, { "number": 1, @@ -17023,7 +17566,8 @@ "load": 1, "destination": 693, "speed": 0, - "mass": 70.86 + "mass": 70.86, + "race": "Koreans" }, { "number": 1, @@ -17038,7 +17582,8 @@ "load": 0, "destination": 369, "speed": 0, - "mass": 87.12 + "mass": 87.12, + "race": "Koreans" }, { "number": 56, @@ -17053,7 +17598,8 @@ "load": 0, "destination": 369, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 2, @@ -17068,7 +17614,8 @@ "load": 0, "destination": 504, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 2, @@ -17083,7 +17630,8 @@ "load": 0, "destination": 45, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 133, @@ -17098,7 +17646,8 @@ "load": 0, "destination": 693, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 18, @@ -17113,7 +17662,8 @@ "load": 0, "destination": 596, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -17128,7 +17678,8 @@ "load": 0, "destination": 243, "speed": 0, - "mass": 58.36 + "mass": 58.36, + "race": "Koreans" }, { "number": 1, @@ -17143,7 +17694,8 @@ "load": 0, "destination": 231, "speed": 0, - "mass": 68.19 + "mass": 68.19, + "race": "Koreans" }, { "number": 1, @@ -17158,7 +17710,8 @@ "load": 1, "destination": 693, "speed": 0, - "mass": 99.9 + "mass": 99.9, + "race": "Koreans" }, { "number": 1, @@ -17173,7 +17726,8 @@ "load": 1, "destination": 654, "speed": 0, - "mass": 222.92 + "mass": 222.92, + "race": "Koreans" }, { "number": 1, @@ -17188,7 +17742,8 @@ "load": 0, "destination": 513, "speed": 0, - "mass": 70.58 + "mass": 70.58, + "race": "Koreans" }, { "number": 56, @@ -17203,7 +17758,8 @@ "load": 0, "destination": 654, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 31, @@ -17218,7 +17774,8 @@ "load": 0, "destination": 45, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 7, @@ -17233,7 +17790,8 @@ "load": 0, "destination": 9, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 37, @@ -17248,7 +17806,8 @@ "load": 0, "destination": 369, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -17263,7 +17822,8 @@ "load": 1, "destination": 369, "speed": 0, - "mass": 70.86 + "mass": 70.86, + "race": "Koreans" }, { "number": 1, @@ -17278,7 +17838,8 @@ "load": 0, "destination": 369, "speed": 0, - "mass": 68.19 + "mass": 68.19, + "race": "Koreans" }, { "number": 1, @@ -17293,7 +17854,8 @@ "load": 0, "destination": 421, "speed": 0, - "mass": 65.09 + "mass": 65.09, + "race": "Koreans" }, { "number": 170, @@ -17308,7 +17870,8 @@ "load": 0, "destination": 654, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 66, @@ -17323,7 +17886,8 @@ "load": 0, "destination": 190, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 45, @@ -17338,7 +17902,8 @@ "load": 0, "destination": 243, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -17353,7 +17918,8 @@ "load": 0, "destination": 268, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -17368,7 +17934,8 @@ "load": 0, "destination": 495, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -17383,7 +17950,8 @@ "load": 0, "destination": 243, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 2, @@ -17398,7 +17966,8 @@ "load": 0, "destination": 45, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 2, @@ -17413,7 +17982,8 @@ "load": 0, "destination": 519, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 19, @@ -17428,7 +17998,8 @@ "load": 0, "destination": 369, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -17443,7 +18014,8 @@ "load": 0, "destination": 559, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -17458,7 +18030,8 @@ "load": 0, "destination": 474, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -17473,7 +18046,8 @@ "load": 0, "destination": 183, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -17488,7 +18062,8 @@ "load": 0, "destination": 206, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -17503,7 +18078,8 @@ "load": 0, "destination": 612, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -17518,7 +18094,8 @@ "load": 0, "destination": 191, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -17533,7 +18110,8 @@ "load": 0, "destination": 549, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -17548,7 +18126,8 @@ "load": 0, "destination": 602, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -17563,7 +18142,8 @@ "load": 0, "destination": 697, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -17578,7 +18158,8 @@ "load": 0, "destination": 552, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -17593,7 +18174,8 @@ "load": 0, "destination": 421, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -17608,7 +18190,8 @@ "load": 0, "destination": 49, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -17623,7 +18206,8 @@ "load": 0, "destination": 111, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -17638,7 +18222,8 @@ "load": 0, "destination": 183, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -17653,7 +18238,8 @@ "load": 0, "destination": 190, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 75, @@ -17668,7 +18254,8 @@ "load": 0, "destination": 191, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -17683,7 +18270,8 @@ "load": 0, "destination": 206, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 70, @@ -17698,7 +18286,8 @@ "load": 0, "destination": 421, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -17713,7 +18302,8 @@ "load": 0, "destination": 474, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -17728,7 +18318,8 @@ "load": 0, "destination": 559, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -17743,7 +18334,8 @@ "load": 0, "destination": 446, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -17758,7 +18350,8 @@ "load": 0, "destination": 150, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -17773,7 +18366,8 @@ "load": 0, "destination": 685, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -17788,7 +18382,8 @@ "load": 0, "destination": 25, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -17803,7 +18398,8 @@ "load": 0, "destination": 535, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -17818,7 +18414,8 @@ "load": 0, "destination": 507, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -17833,7 +18430,8 @@ "load": 0, "destination": 669, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -17848,7 +18446,8 @@ "load": 0, "destination": 332, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -17863,7 +18462,8 @@ "load": 0, "destination": 139, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -17878,7 +18478,8 @@ "load": 0, "destination": 641, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -17893,7 +18494,8 @@ "load": 0, "destination": 253, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -17908,7 +18510,8 @@ "load": 0, "destination": 649, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -17923,7 +18526,8 @@ "load": 0, "destination": 525, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -17938,7 +18542,8 @@ "load": 0, "destination": 500, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -17953,7 +18558,8 @@ "load": 0, "destination": 298, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -17968,7 +18574,8 @@ "load": 0, "destination": 532, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -17983,7 +18590,8 @@ "load": 0, "destination": 173, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -17998,7 +18606,8 @@ "load": 0, "destination": 55, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -18013,7 +18622,8 @@ "load": 0, "destination": 403, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -18028,7 +18638,8 @@ "load": 0, "destination": 432, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -18043,7 +18654,8 @@ "load": 0, "destination": 20, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -18058,7 +18670,8 @@ "load": 0, "destination": 489, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -18073,7 +18686,8 @@ "load": 0, "destination": 506, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -18088,7 +18702,8 @@ "load": 0, "destination": 46, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -18103,7 +18718,8 @@ "load": 0, "destination": 685, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -18118,7 +18734,8 @@ "load": 0, "destination": 25, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -18133,7 +18750,8 @@ "load": 0, "destination": 366, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -18148,7 +18766,8 @@ "load": 0, "destination": 12, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -18163,7 +18782,8 @@ "load": 0, "destination": 610, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -18178,7 +18798,8 @@ "load": 0, "destination": 56, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -18193,7 +18814,8 @@ "load": 0, "destination": 459, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -18208,7 +18830,8 @@ "load": 0, "destination": 196, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -18223,7 +18846,8 @@ "load": 0, "destination": 207, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Kellerants" }, { "number": 1, @@ -18238,7 +18862,8 @@ "load": 0, "destination": 663, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 1, @@ -18253,7 +18878,8 @@ "load": 0, "destination": 85, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 1, @@ -18268,7 +18894,8 @@ "load": 0, "destination": 521, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 1, @@ -18283,7 +18910,8 @@ "load": 0, "destination": 690, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 2, @@ -18298,7 +18926,8 @@ "load": 0, "destination": 56, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 2, @@ -18313,7 +18942,8 @@ "load": 0, "destination": 196, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 2, @@ -18328,7 +18958,8 @@ "load": 0, "destination": 459, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 2, @@ -18343,7 +18974,8 @@ "load": 0, "destination": 314, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 2, @@ -18358,7 +18990,8 @@ "load": 0, "destination": 207, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 1, @@ -18373,7 +19006,8 @@ "load": 0, "destination": 20, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 1, @@ -18388,7 +19022,8 @@ "load": 0, "destination": 489, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 1, @@ -18403,7 +19038,8 @@ "load": 0, "destination": 203, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 1, @@ -18418,7 +19054,8 @@ "load": 0, "destination": 530, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 1, @@ -18433,7 +19070,8 @@ "load": 0, "destination": 500, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 1, @@ -18448,7 +19086,8 @@ "load": 0, "destination": 506, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 1, @@ -18463,7 +19102,8 @@ "load": 0, "destination": 421, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Onix" }, { "number": 1, @@ -18478,7 +19118,8 @@ "load": 0, "destination": 28, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Onix" }, { "number": 1, @@ -18493,7 +19134,8 @@ "load": 0, "destination": 612, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Onix" }, { "number": 1, @@ -18508,7 +19150,8 @@ "load": 0, "destination": 45, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Onix" }, { "number": 1, @@ -18523,7 +19166,8 @@ "load": 0, "destination": 504, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Onix" }, { "number": 1, @@ -18538,7 +19182,8 @@ "load": 0, "destination": 552, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Onix" }, { "number": 1, @@ -18553,7 +19198,8 @@ "load": 0, "destination": 602, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Onix" }, { "number": 1, @@ -18568,7 +19214,8 @@ "load": 0, "destination": 697, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Onix" }, { "number": 1, @@ -18583,7 +19230,8 @@ "load": 0, "destination": 549, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Onix" }, { "number": 1, @@ -18598,7 +19246,8 @@ "load": 0, "destination": 191, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Onix" }, { "number": 1, @@ -18613,7 +19262,8 @@ "load": 0, "destination": 431, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Onix" }, { "number": 2, @@ -18628,7 +19278,8 @@ "load": 2.31, "destination": 370, "speed": 0, - "mass": 18.6 + "mass": 18.6, + "race": "SSSan" }, { "number": 1, @@ -18643,7 +19294,8 @@ "load": 0, "destination": 114, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -18658,7 +19310,8 @@ "load": 0, "destination": 296, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -18673,7 +19326,8 @@ "load": 0, "destination": 447, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -18688,7 +19342,8 @@ "load": 0, "destination": 191, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -18703,7 +19358,8 @@ "load": 0, "destination": 176, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -18718,7 +19374,8 @@ "load": 0, "destination": 282, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -18733,7 +19390,8 @@ "load": 0, "destination": 223, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -18748,7 +19406,8 @@ "load": 0, "destination": 17, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -18763,7 +19422,8 @@ "load": 0, "destination": 495, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -18778,7 +19438,8 @@ "load": 0, "destination": 87, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -18793,7 +19454,8 @@ "load": 0, "destination": 338, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -18808,7 +19470,8 @@ "load": 0, "destination": 38, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -18823,7 +19486,8 @@ "load": 0, "destination": 177, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -18838,7 +19502,8 @@ "load": 0, "destination": 523, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -18853,7 +19518,8 @@ "load": 0, "destination": 679, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -18868,7 +19534,8 @@ "load": 0, "destination": 572, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -18883,7 +19550,8 @@ "load": 0, "destination": 461, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -18898,7 +19566,8 @@ "load": 0, "destination": 458, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -18913,7 +19582,8 @@ "load": 0, "destination": 622, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 157, @@ -18928,7 +19598,8 @@ "load": 0, "destination": 370, "speed": 0, - "mass": 2.08 + "mass": 2.08, + "race": "SSSan" }, { "number": 1, @@ -18943,7 +19614,8 @@ "load": 0, "destination": 370, "speed": 0, - "mass": 88.71 + "mass": 88.71, + "race": "SSSan" }, { "number": 24, @@ -18958,7 +19630,8 @@ "load": 0, "destination": 370, "speed": 0, - "mass": 2 + "mass": 2, + "race": "SSSan" }, { "number": 1, @@ -18973,7 +19646,8 @@ "load": 0, "destination": 558, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -18988,7 +19662,8 @@ "load": 0, "destination": 370, "speed": 0, - "mass": 49.44 + "mass": 49.44, + "race": "SSSan" }, { "number": 1, @@ -19003,7 +19678,8 @@ "load": 0, "destination": 141, "speed": 0, - "mass": 196.25 + "mass": 196.25, + "race": "SSSan" }, { "number": 4, @@ -19018,7 +19694,8 @@ "load": 0, "destination": 268, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -19033,7 +19710,8 @@ "load": 1.51, "destination": 141, "speed": 0, - "mass": 17.87 + "mass": 17.87, + "race": "SSSan" }, { "number": 19, @@ -19048,7 +19726,8 @@ "load": 0, "destination": 292, "speed": 0, - "mass": 2.08 + "mass": 2.08, + "race": "SSSan" }, { "number": 1, @@ -19063,7 +19742,8 @@ "load": 0, "destination": 500, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Shuriki" }, { "number": 1, @@ -19078,7 +19758,8 @@ "load": 0, "destination": 20, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Shuriki" }, { "number": 1, @@ -19093,7 +19774,8 @@ "load": 0, "destination": 432, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Shuriki" }, { "number": 1, @@ -19108,7 +19790,8 @@ "load": 0, "destination": 489, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Shuriki" }, { "number": 1, @@ -19123,7 +19806,8 @@ "load": 0, "destination": 506, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Shuriki" }, { "number": 1, @@ -19138,7 +19822,8 @@ "load": 0, "destination": 641, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Shuriki" }, { "number": 1, @@ -19153,7 +19838,8 @@ "load": 0, "destination": 669, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Shuriki" }, { "number": 1, @@ -19168,7 +19854,8 @@ "load": 0, "destination": 95, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Civilians" }, { "number": 1, @@ -19183,7 +19870,8 @@ "load": 0, "destination": 95, "speed": 0, - "mass": 1 + "mass": 1, + "race": "AT-2560TX" }, { "number": 1, @@ -19198,7 +19886,8 @@ "load": 0, "destination": 421, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Acreators" }, { "number": 1, @@ -19213,7 +19902,8 @@ "load": 0, "destination": 28, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Acreators" }, { "number": 1, @@ -19228,7 +19918,8 @@ "load": 0, "destination": 45, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Acreators" }, { "number": 1, @@ -19243,7 +19934,8 @@ "load": 0, "destination": 612, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Acreators" }, { "number": 1, @@ -19258,7 +19950,8 @@ "load": 0.08, "destination": 370, "speed": 0, - "mass": 6.26 + "mass": 6.26, + "race": "BlackCrows" }, { "number": 1, @@ -19273,7 +19966,8 @@ "load": 0, "destination": 369, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19288,7 +19982,8 @@ "load": 0, "destination": 635, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19303,7 +19998,8 @@ "load": 0, "destination": 559, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19318,7 +20014,8 @@ "load": 0, "destination": 596, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19333,7 +20030,8 @@ "load": 0, "destination": 549, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19348,7 +20046,8 @@ "load": 0, "destination": 370, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19363,7 +20062,8 @@ "load": 0, "destination": 421, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19378,7 +20078,8 @@ "load": 0, "destination": 111, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19393,7 +20094,8 @@ "load": 0, "destination": 206, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19408,7 +20110,8 @@ "load": 0, "destination": 190, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19423,7 +20126,8 @@ "load": 0, "destination": 183, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19438,7 +20142,8 @@ "load": 0, "destination": 28, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19453,7 +20158,8 @@ "load": 0, "destination": 693, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19468,7 +20174,8 @@ "load": 0, "destination": 431, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19483,7 +20190,8 @@ "load": 0, "destination": 231, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19498,7 +20206,8 @@ "load": 0, "destination": 394, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19513,7 +20222,8 @@ "load": 0, "destination": 654, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19528,7 +20238,8 @@ "load": 0, "destination": 292, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19543,7 +20254,8 @@ "load": 0, "destination": 612, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19558,7 +20270,8 @@ "load": 0, "destination": 513, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19573,7 +20286,8 @@ "load": 0, "destination": 141, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19588,7 +20302,8 @@ "load": 0, "destination": 519, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19603,7 +20318,8 @@ "load": 0, "destination": 552, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19618,7 +20334,8 @@ "load": 0, "destination": 268, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19633,7 +20350,8 @@ "load": 0, "destination": 697, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19648,7 +20366,8 @@ "load": 0, "destination": 9, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19663,7 +20382,8 @@ "load": 0, "destination": 243, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19678,7 +20398,8 @@ "load": 0, "destination": 191, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19693,7 +20414,8 @@ "load": 0, "destination": 474, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19708,7 +20430,8 @@ "load": 0, "destination": 45, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19723,7 +20446,8 @@ "load": 0, "destination": 504, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19738,7 +20462,8 @@ "load": 0, "destination": 49, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19753,7 +20478,8 @@ "load": 0, "destination": 602, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -19768,7 +20494,8 @@ "load": 0, "destination": 691, "speed": 0, - "mass": 49.35 + "mass": 49.35, + "race": "Nails" }, { "number": 8, @@ -19783,7 +20510,8 @@ "load": 0, "destination": 396, "speed": 0, - "mass": 3.5 + "mass": 3.5, + "race": "Nails" }, { "number": 1, @@ -19798,7 +20526,8 @@ "load": 0, "destination": 314, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 19, @@ -19813,7 +20542,8 @@ "load": 0, "destination": 14, "speed": 0, - "mass": 2.4 + "mass": 2.4, + "race": "Nails" }, { "number": 1, @@ -19828,7 +20558,8 @@ "load": 0, "destination": 79, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -19843,7 +20574,8 @@ "load": 0, "destination": 196, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -19858,7 +20590,8 @@ "load": 0, "destination": 207, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -19873,7 +20606,8 @@ "load": 0, "destination": 56, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -19888,7 +20622,8 @@ "load": 0, "destination": 690, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -19903,7 +20638,8 @@ "load": 0, "destination": 663, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -19918,7 +20654,8 @@ "load": 0, "destination": 85, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -19933,7 +20670,8 @@ "load": 0, "destination": 459, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -19948,7 +20686,8 @@ "load": 0, "destination": 12, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -19963,7 +20702,8 @@ "load": 0, "destination": 366, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -19978,7 +20718,8 @@ "load": 0, "destination": 691, "speed": 0, - "mass": 14.08 + "mass": 14.08, + "race": "Nails" }, { "number": 1, @@ -19993,7 +20734,8 @@ "load": 0, "destination": 14, "speed": 0, - "mass": 49.5 + "mass": 49.5, + "race": "Nails" }, { "number": 5, @@ -20008,7 +20750,8 @@ "load": 0, "destination": 14, "speed": 0, - "mass": 2 + "mass": 2, + "race": "Nails" }, { "number": 1, @@ -20023,7 +20766,8 @@ "load": 1.05, "destination": 283, "speed": 0, - "mass": 67.61 + "mass": 67.61, + "race": "Nails" }, { "number": 1, @@ -20038,7 +20782,8 @@ "load": 1.05, "destination": 14, "speed": 0, - "mass": 90.05 + "mass": 90.05, + "race": "Nails" }, { "number": 1, @@ -20053,7 +20798,8 @@ "load": 1.05, "destination": 430, "speed": 0, - "mass": 50.49 + "mass": 50.49, + "race": "Nails" }, { "number": 1, @@ -20068,7 +20814,8 @@ "load": 1.05, "destination": 430, "speed": 0, - "mass": 67.61 + "mass": 67.61, + "race": "Nails" }, { "number": 1, @@ -20083,7 +20830,8 @@ "load": 0, "destination": 283, "speed": 0, - "mass": 49.5 + "mass": 49.5, + "race": "Nails" }, { "number": 1, @@ -20098,7 +20846,8 @@ "load": 1.05, "destination": 14, "speed": 0, - "mass": 67.61 + "mass": 67.61, + "race": "Nails" }, { "number": 1, @@ -20113,7 +20862,8 @@ "load": 1.05, "destination": 283, "speed": 0, - "mass": 90.2 + "mass": 90.2, + "race": "Nails" }, { "number": 1, @@ -20128,7 +20878,8 @@ "load": 1.05, "destination": 283, "speed": 0, - "mass": 50.45 + "mass": 50.45, + "race": "Nails" }, { "number": 25, @@ -20143,7 +20894,8 @@ "load": 0, "destination": 14, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -20158,7 +20910,8 @@ "load": 1.05, "destination": 14, "speed": 0, - "mass": 67.61 + "mass": 67.61, + "race": "Nails" }, { "number": 1, @@ -20173,7 +20926,8 @@ "load": 0, "destination": 521, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 99, @@ -20188,7 +20942,8 @@ "load": 0, "destination": 14, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -20203,7 +20958,8 @@ "load": 0, "destination": 430, "speed": 0, - "mass": 66.55 + "mass": 66.55, + "race": "Nails" }, { "number": 1, @@ -20218,7 +20974,8 @@ "load": 1.05, "destination": 14, "speed": 0, - "mass": 90.15 + "mass": 90.15, + "race": "Nails" }, { "number": 1, @@ -20233,7 +20990,8 @@ "load": 0, "destination": 283, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -20248,7 +21006,8 @@ "load": 0, "destination": 587, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -20263,7 +21022,8 @@ "load": 0, "destination": 430, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -20278,7 +21038,8 @@ "load": 0, "destination": 14, "speed": 0, - "mass": 49 + "mass": 49, + "race": "Nails" }, { "number": 105, @@ -20293,7 +21054,8 @@ "load": 0, "destination": 14, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -20308,7 +21070,8 @@ "load": 0, "destination": 14, "speed": 0, - "mass": 66.28 + "mass": 66.28, + "race": "Nails" }, { "number": 1, @@ -20323,7 +21086,8 @@ "load": 0, "destination": 673, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -20338,7 +21102,8 @@ "load": 0, "destination": 530, "speed": 0, - "mass": 2.6 + "mass": 2.6, + "race": "Nails" }, { "number": 291, @@ -20353,7 +21118,8 @@ "load": 0, "destination": 14, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -20368,7 +21134,8 @@ "load": 0, "destination": 69, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -20383,7 +21150,8 @@ "load": 0, "destination": 662, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 212, @@ -20398,7 +21166,8 @@ "load": 0, "destination": 14, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 76, @@ -20413,7 +21182,8 @@ "load": 0, "destination": 283, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -20428,7 +21198,8 @@ "load": 0, "destination": 24, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 118, @@ -20443,7 +21214,8 @@ "load": 0, "destination": 14, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -20458,7 +21230,8 @@ "load": 0, "destination": 296, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 48, @@ -20473,7 +21246,8 @@ "load": 0, "destination": 430, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -20488,7 +21262,8 @@ "load": 0, "destination": 425, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -20503,7 +21278,8 @@ "load": 0, "destination": 396, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -20518,7 +21294,8 @@ "load": 0, "destination": 479, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -20533,7 +21310,8 @@ "load": 0, "destination": 14, "speed": 0, - "mass": 98 + "mass": 98, + "race": "Nails" }, { "number": 24, @@ -20548,7 +21326,8 @@ "load": 0, "destination": 48, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 3, @@ -20563,7 +21342,8 @@ "load": 0, "destination": 203, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 22, @@ -20578,7 +21358,8 @@ "load": 0, "destination": 396, "speed": 0, - "mass": 2.17 + "mass": 2.17, + "race": "Nails" }, { "number": 42, @@ -20593,7 +21374,8 @@ "load": 0, "destination": 425, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 13, @@ -20608,7 +21390,8 @@ "load": 0, "destination": 530, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 25, @@ -20623,7 +21406,8 @@ "load": 0, "destination": 673, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -20638,7 +21422,8 @@ "load": 26.25, "destination": 559, "speed": 0, - "mass": 75.75 + "mass": 75.75, + "race": "AbubaGerbographerPot" }, { "number": 5, @@ -20653,7 +21438,8 @@ "load": 0, "destination": 268, "speed": 0, - "mass": 1 + "mass": 1, + "race": "AbubaGerbographerPot" }, { "number": 7, @@ -20668,7 +21454,8 @@ "load": 0, "destination": 513, "speed": 0, - "mass": 4.03 + "mass": 4.03, + "race": "AbubaGerbographerPot" }, { "number": 14, @@ -20683,7 +21470,8 @@ "load": 0, "destination": 596, "speed": 0, - "mass": 4.03 + "mass": 4.03, + "race": "AbubaGerbographerPot" }, { "number": 1, @@ -20698,7 +21486,8 @@ "load": 0, "destination": 95, "speed": 0, - "mass": 1 + "mass": 1, + "race": "6PATBA" }, { "number": 1, @@ -20713,7 +21502,8 @@ "load": 1.18, "destination": 20, "speed": 0, - "mass": 9.43 + "mass": 9.43, + "race": "Ricksha" }, { "number": 1, @@ -20728,7 +21518,8 @@ "load": 0, "destination": 507, "speed": 0, - "mass": 8.25 + "mass": 8.25, + "race": "Ricksha" }, { "number": 1, @@ -20743,7 +21534,8 @@ "load": 20.02, "destination": 641, "speed": 0, - "mass": 69.52 + "mass": 69.52, + "race": "Ricksha" }, { "number": 1, @@ -20758,7 +21550,8 @@ "load": 0, "destination": 55, "speed": 0, - "mass": 99 + "mass": 99, + "race": "Ricksha" }, { "number": 15, @@ -20773,7 +21566,8 @@ "load": 0, "destination": 669, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -20788,7 +21582,8 @@ "load": 0, "destination": 150, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -20803,7 +21598,8 @@ "load": 0, "destination": 173, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -20818,7 +21614,8 @@ "load": 0, "destination": 506, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -20833,7 +21630,8 @@ "load": 0, "destination": 535, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -20848,7 +21646,8 @@ "load": 0, "destination": 150, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -20863,7 +21662,8 @@ "load": 0, "destination": 173, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -20878,7 +21678,8 @@ "load": 0, "destination": 525, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -20893,7 +21694,8 @@ "load": 0, "destination": 610, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 6, @@ -20908,7 +21710,8 @@ "load": 0, "destination": 446, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 24, @@ -20923,7 +21726,8 @@ "load": 0, "destination": 632, "speed": 0, - "mass": 2 + "mass": 2, + "race": "Ricksha" }, { "number": 1, @@ -20938,7 +21742,8 @@ "load": 0, "destination": 632, "speed": 0, - "mass": 99 + "mass": 99, + "race": "Ricksha" }, { "number": 1, @@ -20953,7 +21758,8 @@ "load": 1.03, "destination": 632, "speed": 0, - "mass": 199.03 + "mass": 199.03, + "race": "Ricksha" }, { "number": 2, @@ -20968,7 +21774,8 @@ "load": 20.02, "destination": 489, "speed": 0, - "mass": 69.52 + "mass": 69.52, + "race": "Ricksha" }, { "number": 37, @@ -20983,7 +21790,8 @@ "load": 0, "destination": 446, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -20998,7 +21806,8 @@ "load": 0, "destination": 25, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -21013,7 +21822,8 @@ "load": 0, "destination": 507, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 5, @@ -21028,7 +21838,8 @@ "load": 0, "destination": 446, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 500, @@ -21043,7 +21854,8 @@ "load": 0, "destination": 632, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -21058,7 +21870,8 @@ "load": 0, "destination": 446, "speed": 0, - "mass": 65.15 + "mass": 65.15, + "race": "Ricksha" }, { "number": 1, @@ -21073,7 +21886,8 @@ "load": 0, "destination": 446, "speed": 0, - "mass": 49.5 + "mass": 49.5, + "race": "Ricksha" }, { "number": 1, @@ -21088,7 +21902,8 @@ "load": 1.02, "destination": 632, "speed": 0, - "mass": 250.02 + "mass": 250.02, + "race": "Ricksha" }, { "number": 1, @@ -21103,7 +21918,8 @@ "load": 0, "destination": 632, "speed": 0, - "mass": 49.5 + "mass": 49.5, + "race": "Ricksha" }, { "number": 1, @@ -21118,7 +21934,8 @@ "load": 0, "destination": 632, "speed": 0, - "mass": 49.5 + "mass": 49.5, + "race": "Ricksha" }, { "number": 1, @@ -21133,7 +21950,8 @@ "load": 1.03, "destination": 632, "speed": 0, - "mass": 125.36 + "mass": 125.36, + "race": "Ricksha" }, { "number": 1, @@ -21148,7 +21966,8 @@ "load": 0, "destination": 525, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 48, @@ -21163,7 +21982,8 @@ "load": 0, "destination": 446, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -21178,7 +21998,8 @@ "load": 0, "destination": 446, "speed": 0, - "mass": 124.33 + "mass": 124.33, + "race": "Ricksha" }, { "number": 1, @@ -21193,7 +22014,8 @@ "load": 0, "destination": 532, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -21208,7 +22030,8 @@ "load": 0, "destination": 55, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -21223,7 +22046,8 @@ "load": 0, "destination": 489, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -21238,7 +22062,8 @@ "load": 0, "destination": 446, "speed": 0, - "mass": 99 + "mass": 99, + "race": "Ricksha" }, { "number": 1, @@ -21253,7 +22078,8 @@ "load": 0, "destination": 139, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -21268,7 +22094,8 @@ "load": 0, "destination": 500, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -21283,7 +22110,8 @@ "load": 0, "destination": 432, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -21298,7 +22126,8 @@ "load": 0, "destination": 298, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -21313,7 +22142,8 @@ "load": 0, "destination": 403, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -21328,7 +22158,8 @@ "load": 0, "destination": 649, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -21343,7 +22174,8 @@ "load": 0, "destination": 641, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -21358,7 +22190,8 @@ "load": 1.05, "destination": 632, "speed": 0, - "mass": 79.75 + "mass": 79.75, + "race": "Ricksha" }, { "number": 1, @@ -21373,7 +22206,8 @@ "load": 0, "destination": 632, "speed": 0, - "mass": 99 + "mass": 99, + "race": "Ricksha" }, { "number": 88, @@ -21388,7 +22222,8 @@ "load": 0, "destination": 632, "speed": 0, - "mass": 2 + "mass": 2, + "race": "Ricksha" }, { "number": 1, @@ -21403,7 +22238,8 @@ "load": 0, "destination": 446, "speed": 0, - "mass": 359.13 + "mass": 359.13, + "race": "Ricksha" }, { "number": 157, @@ -21418,7 +22254,8 @@ "load": 0, "destination": 55, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 2, @@ -21433,7 +22270,8 @@ "load": 0, "destination": 139, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 19, @@ -21448,7 +22286,8 @@ "load": 0, "destination": 150, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 2, @@ -21463,7 +22302,8 @@ "load": 0, "destination": 298, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 57, @@ -21478,7 +22318,8 @@ "load": 0, "destination": 332, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 70, @@ -21493,7 +22334,8 @@ "load": 0, "destination": 403, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 50, @@ -21508,7 +22350,8 @@ "load": 0, "destination": 446, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 10, @@ -21523,7 +22366,8 @@ "load": 0, "destination": 489, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 157, @@ -21538,7 +22382,8 @@ "load": 0, "destination": 500, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 2, @@ -21553,7 +22398,8 @@ "load": 0, "destination": 506, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 2, @@ -21568,7 +22414,8 @@ "load": 0, "destination": 507, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 2, @@ -21583,7 +22430,8 @@ "load": 0, "destination": 525, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 2, @@ -21598,7 +22446,8 @@ "load": 0, "destination": 532, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 198, @@ -21613,7 +22462,8 @@ "load": 0, "destination": 535, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 2, @@ -21628,7 +22478,8 @@ "load": 0, "destination": 610, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 2, @@ -21643,7 +22494,8 @@ "load": 0, "destination": 632, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 2, @@ -21658,7 +22510,8 @@ "load": 0, "destination": 641, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 95, @@ -21673,7 +22526,8 @@ "load": 0, "destination": 649, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 2, @@ -21688,7 +22542,8 @@ "load": 0, "destination": 669, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -21703,7 +22558,8 @@ "load": 0, "destination": 173, "speed": 0, - "mass": 359.1 + "mass": 359.1, + "race": "Ricksha" }, { "number": 1, @@ -21718,7 +22574,8 @@ "load": 0, "destination": 25, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -21733,7 +22590,8 @@ "load": 0, "destination": 641, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -21748,7 +22606,8 @@ "load": 0, "destination": 532, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -21763,7 +22622,8 @@ "load": 0, "destination": 173, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -21778,7 +22638,8 @@ "load": 0, "destination": 610, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -21793,7 +22654,8 @@ "load": 0, "destination": 632, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -21808,7 +22670,8 @@ "load": 0, "destination": 332, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -21823,7 +22686,8 @@ "load": 0, "destination": 446, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -21838,7 +22702,8 @@ "load": 0, "destination": 72, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -21853,7 +22718,8 @@ "load": 0, "destination": 251, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -21868,7 +22734,8 @@ "load": 0, "destination": 535, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -21883,7 +22750,8 @@ "load": 0, "destination": 150, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -21898,7 +22766,8 @@ "load": 0, "destination": 15, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -21913,7 +22782,8 @@ "load": 0, "destination": 525, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -21928,7 +22798,8 @@ "load": 0, "destination": 403, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -21943,7 +22814,8 @@ "load": 0, "destination": 649, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -21958,7 +22830,8 @@ "load": 0, "destination": 55, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -21973,7 +22846,8 @@ "load": 0, "destination": 409, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -21988,7 +22862,8 @@ "load": 0, "destination": 436, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -22003,7 +22878,8 @@ "load": 0, "destination": 305, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -22018,7 +22894,8 @@ "load": 0, "destination": 340, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -22033,7 +22910,8 @@ "load": 0, "destination": 624, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -22048,7 +22926,8 @@ "load": 0, "destination": 569, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -22063,7 +22942,8 @@ "load": 0, "destination": 690, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -22078,7 +22958,8 @@ "load": 0, "destination": 507, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -22093,7 +22974,8 @@ "load": 0, "destination": 139, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -22108,7 +22990,8 @@ "load": 0, "destination": 669, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -22123,7 +23006,8 @@ "load": 0, "destination": 500, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -22138,7 +23022,8 @@ "load": 0, "destination": 506, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -22153,7 +23038,8 @@ "load": 0, "destination": 432, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -22168,7 +23054,8 @@ "load": 0, "destination": 20, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -22183,7 +23070,8 @@ "load": 0, "destination": 489, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -22198,7 +23086,8 @@ "load": 0, "destination": 434, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -22213,7 +23102,8 @@ "load": 0, "destination": 298, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -22228,7 +23118,8 @@ "load": 0, "destination": 438, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -22243,7 +23134,8 @@ "load": 0, "destination": 222, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -22258,7 +23150,8 @@ "load": 0, "destination": 95, "speed": 0, - "mass": 1 + "mass": 1, + "race": "3JO6HbIE" }, { "number": 1, @@ -22273,7 +23166,8 @@ "load": 0, "destination": 268, "speed": 0, - "mass": 1 + "mass": 1, + "race": "3JO6HbIE" } ], "unidentifiedGroup": [ diff --git a/tools/local-dev/reports/dg/KNNTS041.json b/tools/local-dev/reports/dg/KNNTS041.json index efa7212..896fb5c 100644 --- a/tools/local-dev/reports/dg/KNNTS041.json +++ b/tools/local-dev/reports/dg/KNNTS041.json @@ -9498,6 +9498,7 @@ "destination": 458, "speed": 0, "mass": 13.42, + "race": "KnightErrants", "id": "c1b96767-472f-5a96-8d83-369b5800b1c1", "state": "In_Orbit", "fleet": null @@ -9516,6 +9517,7 @@ "destination": 461, "speed": 0, "mass": 24.75, + "race": "KnightErrants", "id": "d3c4e0e7-de33-5145-b28b-293b2e02c445", "state": "In_Orbit", "fleet": null @@ -9534,6 +9536,7 @@ "destination": 114, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "fe8805a6-d03c-5b66-a062-c9eaa2266d20", "state": "In_Orbit", "fleet": null @@ -9552,6 +9555,7 @@ "destination": 223, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ce729a18-d695-5bed-857e-2806e576a1f1", "state": "In_Orbit", "fleet": null @@ -9570,6 +9574,7 @@ "destination": 332, "speed": 0, "mass": 7.07, + "race": "KnightErrants", "id": "0d0263b4-ff6b-5d55-b7cd-ac73d873812c", "state": "In_Orbit", "fleet": null @@ -9588,6 +9593,7 @@ "destination": 495, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "fde80508-8829-5e8f-afa4-e16d2ce3e24f", "state": "In_Orbit", "fleet": null @@ -9606,6 +9612,7 @@ "destination": 447, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "78449cc4-c2ec-53de-a0a3-87512990f742", "state": "In_Orbit", "fleet": null @@ -9624,6 +9631,7 @@ "destination": 332, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0f48d7f3-8e0d-539d-afbe-8a59f6ef2fcf", "state": "In_Orbit", "fleet": null @@ -9642,6 +9650,7 @@ "destination": 223, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ee402052-9f78-5244-a57f-0c36e497ebef", "state": "In_Orbit", "fleet": null @@ -9660,6 +9669,7 @@ "destination": 495, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "25de95f9-580a-5135-9ad7-f6ee91e74c9f", "state": "In_Orbit", "fleet": null @@ -9678,6 +9688,7 @@ "destination": 679, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "74c19316-4e30-574d-b7a6-3c98c13342d7", "state": "In_Orbit", "fleet": null @@ -9696,6 +9707,7 @@ "destination": 227, "speed": 0, "mass": 148.79, + "race": "KnightErrants", "id": "6875713d-719e-5740-ae2b-1dae8925a18d", "state": "In_Orbit", "fleet": null @@ -9714,6 +9726,7 @@ "destination": 649, "speed": 0, "mass": 149.54, + "race": "KnightErrants", "id": "ae51be3a-e3f7-59c1-83bd-ee193e3a0b6a", "state": "In_Orbit", "fleet": null @@ -9732,6 +9745,7 @@ "destination": 635, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "e9addad6-60b0-5401-8b2d-e77c7dcea116", "state": "In_Orbit", "fleet": null @@ -9750,6 +9764,7 @@ "destination": 431, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0ecedad6-87f3-5371-b0a5-1d8e44e934cd", "state": "In_Orbit", "fleet": null @@ -9768,6 +9783,7 @@ "destination": 183, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2a64b7aa-d58b-5a04-81c5-600d4743dd1a", "state": "In_Orbit", "fleet": null @@ -9786,6 +9802,7 @@ "destination": 190, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ee77f33d-5bf5-5935-81b1-ae0b4c80bd06", "state": "In_Orbit", "fleet": null @@ -9804,6 +9821,7 @@ "destination": 292, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "407c3512-cff7-57fe-8c61-1492eedf2f38", "state": "In_Orbit", "fleet": null @@ -9822,6 +9840,7 @@ "destination": 504, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "8aa2ce73-3bfe-5f70-8993-da801d34f6ab", "state": "In_Orbit", "fleet": null @@ -9842,6 +9861,7 @@ "range": 26.27, "speed": 0, "mass": 49.5, + "race": "KnightErrants", "id": "0885e23e-96a9-53a4-87bf-7ffdc8d25a63", "state": "In_Space", "fleet": null @@ -9860,6 +9880,7 @@ "destination": 369, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "db5a16d7-ea0b-5576-bbbf-2cf7086b74f6", "state": "In_Orbit", "fleet": null @@ -9878,6 +9899,7 @@ "destination": 231, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "93151891-83e7-57ab-b22f-3ab7af738478", "state": "In_Orbit", "fleet": null @@ -9896,6 +9918,7 @@ "destination": 500, "speed": 0, "mass": 99, + "race": "KnightErrants", "id": "5f9fdb83-8163-56e2-a538-9cb04f860936", "state": "In_Orbit", "fleet": null @@ -9914,6 +9937,7 @@ "destination": 403, "speed": 0, "mass": 49.99, + "race": "KnightErrants", "id": "4de87a01-538f-575b-aa07-5788768a44f7", "state": "In_Orbit", "fleet": null @@ -9932,6 +9956,7 @@ "destination": 685, "speed": 0, "mass": 28.91, + "race": "KnightErrants", "id": "17d48fe8-b2cd-58b7-ada4-b16994cf0f91", "state": "In_Orbit", "fleet": null @@ -9950,6 +9975,7 @@ "destination": 693, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "503d36af-4488-5ef0-b5de-9cd23cd41084", "state": "In_Orbit", "fleet": null @@ -9968,6 +9994,7 @@ "destination": 114, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "64596118-d163-5699-ab59-c47355ed2cf1", "state": "In_Orbit", "fleet": null @@ -9986,6 +10013,7 @@ "destination": 654, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0e551f01-bea8-5499-9295-4edd11ce9275", "state": "In_Orbit", "fleet": null @@ -10004,6 +10032,7 @@ "destination": 559, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "998ee779-660a-5105-b749-dcceeb29b700", "state": "In_Orbit", "fleet": null @@ -10022,6 +10051,7 @@ "destination": 95, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "cdd558d3-b4b7-52e3-959a-01c9bfc653d6", "state": "In_Orbit", "fleet": null @@ -10040,6 +10070,7 @@ "destination": 49, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "49870a7d-956f-5aa0-a0c9-66a0b661056e", "state": "In_Orbit", "fleet": null @@ -10058,6 +10089,7 @@ "destination": 206, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "6873b5e0-2a1b-567e-b4b6-ba48ea48e802", "state": "In_Orbit", "fleet": null @@ -10076,6 +10108,7 @@ "destination": 519, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "06925742-c92a-5d80-8754-f6352ccdfc6e", "state": "In_Orbit", "fleet": null @@ -10094,6 +10127,7 @@ "destination": 523, "speed": 0, "mass": 2.26, + "race": "KnightErrants", "id": "74bf52d3-1051-5785-b08e-d31561d7b2e8", "state": "In_Orbit", "fleet": null @@ -10112,6 +10146,7 @@ "destination": 20, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "7e2aa02b-5dc4-5574-a33e-d4c216737347", "state": "In_Orbit", "fleet": null @@ -10130,6 +10165,7 @@ "destination": 111, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "66380351-e3b3-54b1-9bb7-6615b9be62ca", "state": "In_Orbit", "fleet": null @@ -10148,6 +10184,7 @@ "destination": 391, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "aa23b889-0780-5c75-be58-513f49d4a87e", "state": "In_Orbit", "fleet": null @@ -10166,6 +10203,7 @@ "destination": 474, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "87194948-6d67-5234-894d-25dbdea031db", "state": "In_Orbit", "fleet": null @@ -10184,6 +10222,7 @@ "destination": 572, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "550e32b9-4068-5c7f-8237-a0dd1f26ece0", "state": "In_Orbit", "fleet": null @@ -10202,6 +10241,7 @@ "destination": 17, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "d52f6245-4857-5703-8125-0ae3c3876baf", "state": "In_Orbit", "fleet": null @@ -10220,6 +10260,7 @@ "destination": 177, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "9a818b63-4fc9-59d6-bfe3-03f683715a0e", "state": "In_Orbit", "fleet": null @@ -10238,6 +10279,7 @@ "destination": 9, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "d2cd96c7-fb2f-5ea2-a0b0-23aadc221cb9", "state": "In_Orbit", "fleet": null @@ -10256,6 +10298,7 @@ "destination": 394, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "5a0ef736-42d3-5394-b385-6aa62527b0fc", "state": "In_Orbit", "fleet": null @@ -10274,6 +10317,7 @@ "destination": 519, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0561b727-bdca-5c26-865c-4845795e7edb", "state": "In_Orbit", "fleet": null @@ -10292,6 +10336,7 @@ "destination": 596, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "58caa413-f1d5-5e5a-812c-e4c3977cd534", "state": "In_Orbit", "fleet": null @@ -10310,6 +10355,7 @@ "destination": 558, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "f0890948-3c59-54b4-bdc6-092d383d5e62", "state": "In_Orbit", "fleet": null @@ -10328,6 +10374,7 @@ "destination": 622, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "45955281-0c7c-5e4c-9e11-c2c40efb3e58", "state": "In_Orbit", "fleet": null @@ -10346,6 +10393,7 @@ "destination": 130, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "86968f2e-fc10-5366-9336-af8ceec34f9d", "state": "In_Orbit", "fleet": null @@ -10364,6 +10412,7 @@ "destination": 268, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "8f0956d0-f58e-52b3-97b3-5b77616680c7", "state": "In_Orbit", "fleet": null @@ -10382,6 +10431,7 @@ "destination": 458, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ab3be9b6-f441-5687-8538-06be6837dd23", "state": "In_Orbit", "fleet": null @@ -10400,6 +10450,7 @@ "destination": 48, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ce28e59d-1643-5c26-b3d1-74aaa3e796d6", "state": "In_Orbit", "fleet": null @@ -10418,6 +10469,7 @@ "destination": 253, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2b76689e-2be9-5103-88b4-e929ac180b33", "state": "In_Orbit", "fleet": null @@ -10436,6 +10488,7 @@ "destination": 513, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2a13adc9-41f1-5f1e-b1f4-f9f7709fcaa9", "state": "In_Orbit", "fleet": null @@ -10454,6 +10507,7 @@ "destination": 69, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "42f76fd5-39ef-5881-9e96-3090979df3e2", "state": "In_Orbit", "fleet": null @@ -10472,6 +10526,7 @@ "destination": 243, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "04c131cb-f3f1-53c3-9162-2865caae0119", "state": "In_Orbit", "fleet": null @@ -10490,6 +10545,7 @@ "destination": 191, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "7bc54e58-b931-55df-8864-e4b58748f559", "state": "In_Orbit", "fleet": null @@ -10508,6 +10564,7 @@ "destination": 697, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "4ef24cc5-69b3-51c8-a8be-e54c2f047fa5", "state": "In_Orbit", "fleet": null @@ -10526,6 +10583,7 @@ "destination": 430, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "de8001eb-3bbd-5c4c-9b43-f57727b13d36", "state": "In_Orbit", "fleet": null @@ -10544,6 +10602,7 @@ "destination": 45, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "43143f40-e0ed-5651-be78-4a59aea98398", "state": "In_Orbit", "fleet": null @@ -10562,6 +10621,7 @@ "destination": 549, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "654d6549-470b-594f-bbf4-5f4b01b44597", "state": "In_Orbit", "fleet": null @@ -10580,6 +10640,7 @@ "destination": 461, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "6b748afc-108b-5933-b605-dbfd1283c605", "state": "In_Orbit", "fleet": null @@ -10598,6 +10659,7 @@ "destination": 24, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2018e46b-c2cf-56ee-99b6-4198525138bf", "state": "In_Orbit", "fleet": null @@ -10616,6 +10678,7 @@ "destination": 587, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "855d3f4f-5a4e-5678-b438-5ad9a51c2723", "state": "In_Orbit", "fleet": null @@ -10634,6 +10697,7 @@ "destination": 691, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0cb8bb36-2707-55b8-9d29-1d880530a1d0", "state": "In_Orbit", "fleet": null @@ -10652,6 +10716,7 @@ "destination": 425, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "33c78d02-ffc9-5df5-9017-918e005b5818", "state": "In_Orbit", "fleet": null @@ -10670,6 +10735,7 @@ "destination": 396, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "5e0450e1-acec-5f13-bb51-ef5c727f5206", "state": "In_Orbit", "fleet": null @@ -10688,6 +10754,7 @@ "destination": 673, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0299ab68-b1d6-5c0d-98ec-a4dd0535c8e7", "state": "In_Orbit", "fleet": null @@ -10706,6 +10773,7 @@ "destination": 203, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "f0a94be5-3af6-534b-a8cd-7e9c2d31ad0f", "state": "In_Orbit", "fleet": null @@ -10724,6 +10792,7 @@ "destination": 530, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "353840c6-3720-5d10-86c7-d6667de4f529", "state": "In_Orbit", "fleet": null @@ -10742,6 +10811,7 @@ "destination": 227, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0ea4bdec-0e97-56e3-8bf9-9e5e2e303e91", "state": "In_Orbit", "fleet": null @@ -10760,6 +10830,7 @@ "destination": 141, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "5515386b-054e-501e-84de-4e44adcab2ef", "state": "In_Orbit", "fleet": null @@ -10778,6 +10849,7 @@ "destination": 12, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "19d4a93c-ae3e-59f3-9b84-3102cfe19579", "state": "In_Orbit", "fleet": null @@ -10796,6 +10868,7 @@ "destination": 46, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "298455f2-a7c3-5019-b838-48dff1f77e90", "state": "In_Orbit", "fleet": null @@ -10814,6 +10887,7 @@ "destination": 602, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "35f632d6-2f85-5862-8cbc-8be2efce421c", "state": "In_Orbit", "fleet": null @@ -10832,6 +10906,7 @@ "destination": 552, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "f081f7e2-4f20-5fab-afc8-7ee9e51e7eee", "state": "In_Orbit", "fleet": null @@ -10850,6 +10925,7 @@ "destination": 28, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "e4e83504-fc42-5e69-ae10-4f416a679c3d", "state": "In_Orbit", "fleet": null @@ -10868,6 +10944,7 @@ "destination": 370, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "cff70000-645c-5f51-b811-39cb6caff8ff", "state": "In_Orbit", "fleet": null @@ -10886,6 +10963,7 @@ "destination": 532, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "9fc146f9-586a-577e-b54c-761c9bde3fb2", "state": "In_Orbit", "fleet": null @@ -10904,6 +10982,7 @@ "destination": 612, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "7a5bd189-caf0-5a9c-80f2-adc125936433", "state": "In_Orbit", "fleet": null @@ -10922,6 +11001,7 @@ "destination": 585, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "1d92183d-f227-5431-950f-7aa289537315", "state": "In_Orbit", "fleet": null @@ -10940,6 +11020,7 @@ "destination": 366, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ea8a1391-c7b3-5d4b-b8bd-b18cd6eefb5d", "state": "In_Orbit", "fleet": null @@ -10958,6 +11039,7 @@ "destination": 500, "speed": 0, "mass": 2, + "race": "KnightErrants", "id": "637e0bbb-7382-5fba-8ee6-cbd019498aa1", "state": "In_Orbit", "fleet": null @@ -10976,6 +11058,7 @@ "destination": 298, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "00c3384d-233d-5df4-9900-a2acad0846f7", "state": "In_Orbit", "fleet": null @@ -10994,6 +11077,7 @@ "destination": 119, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "80134b6e-30aa-58e6-a5c7-a5e1c82f06b4", "state": "In_Orbit", "fleet": null @@ -11012,6 +11096,7 @@ "destination": 507, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "c5caab15-aaee-5db6-89c9-9e2d234002a5", "state": "In_Orbit", "fleet": null @@ -11030,6 +11115,7 @@ "destination": 461, "speed": 0, "mass": 12.37, + "race": "KnightErrants", "id": "f3b90726-fffe-5d20-b43d-8d3204a03887", "state": "In_Orbit", "fleet": null @@ -11048,6 +11134,7 @@ "destination": 90, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "f45acd56-3151-5882-a2dc-91d3cf3872f5", "state": "In_Orbit", "fleet": null @@ -11066,6 +11153,7 @@ "destination": 632, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2af0f802-d675-5687-803e-378b14e9ff58", "state": "In_Orbit", "fleet": null @@ -11084,6 +11172,7 @@ "destination": 506, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0343ea81-cc37-5562-bdc3-e00ecb42c577", "state": "In_Orbit", "fleet": null @@ -11102,6 +11191,7 @@ "destination": 227, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0a865579-da92-598a-8e05-03a7c891fc7d", "state": "In_Orbit", "fleet": null @@ -11120,6 +11210,7 @@ "destination": 343, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "93873466-3dbb-5f00-ac9f-0beedc7afe33", "state": "In_Orbit", "fleet": null @@ -11138,6 +11229,7 @@ "destination": 403, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "3ec33cc1-1e9c-5e0d-9c80-e584b286a82c", "state": "In_Orbit", "fleet": null @@ -11156,6 +11248,7 @@ "destination": 332, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "c3e70e95-3844-59d2-982e-415525119c5f", "state": "In_Orbit", "fleet": null @@ -11174,6 +11267,7 @@ "destination": 525, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "39cb4177-4aa4-58f4-99b1-70936f21a725", "state": "In_Orbit", "fleet": null @@ -11192,6 +11286,7 @@ "destination": 25, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "7f5b8b02-78ef-5ca3-8884-15fc461d1a4c", "state": "In_Orbit", "fleet": null @@ -11210,6 +11305,7 @@ "destination": 432, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "9681f47a-b083-5aef-aeab-6ead2bbeea80", "state": "In_Orbit", "fleet": null @@ -11228,6 +11324,7 @@ "destination": 685, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "3179ae8e-1dae-53f0-9245-1cf1370a9287", "state": "In_Orbit", "fleet": null @@ -11246,6 +11343,7 @@ "destination": 403, "speed": 0, "mass": 148.99, + "race": "KnightErrants", "id": "f6aaf22a-a5aa-50af-a535-9c90a757bb01", "state": "In_Orbit", "fleet": null @@ -11264,6 +11362,7 @@ "destination": 649, "speed": 0, "mass": 2, + "race": "KnightErrants", "id": "dd58d543-af7b-5e84-bfad-d164e99ec695", "state": "In_Orbit", "fleet": null @@ -11282,6 +11381,7 @@ "destination": 134, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "dba04345-ee08-54b5-abac-2c689810060a", "state": "In_Orbit", "fleet": null @@ -11300,6 +11400,7 @@ "destination": 207, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ffe92756-0d71-563f-8a65-579dbc46d30d", "state": "In_Orbit", "fleet": null @@ -11318,6 +11419,7 @@ "destination": 459, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "d41a5222-66c4-5837-bb17-b95ad029bcf8", "state": "In_Orbit", "fleet": null @@ -11336,6 +11438,7 @@ "destination": 196, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ff88b8a3-d203-509e-ac66-aac4d5d4a319", "state": "In_Orbit", "fleet": null @@ -11354,6 +11457,7 @@ "destination": 85, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2d864b2e-2417-5e55-be45-ba66075dfb51", "state": "In_Orbit", "fleet": null @@ -11372,6 +11476,7 @@ "destination": 663, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "8c435432-7389-55e1-af96-5b8887f36c93", "state": "In_Orbit", "fleet": null @@ -11390,6 +11495,7 @@ "destination": 56, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "93b7cd69-4f68-52cc-983e-cf825d5848ca", "state": "In_Orbit", "fleet": null @@ -11408,6 +11514,7 @@ "destination": 314, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "f68781ae-6827-53aa-806d-e922a6544e7e", "state": "In_Orbit", "fleet": null @@ -11426,6 +11533,7 @@ "destination": 690, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ad76f2da-a48a-5e80-8c17-1dede7bf6dad", "state": "In_Orbit", "fleet": null @@ -11444,6 +11552,7 @@ "destination": 669, "speed": 0, "mass": 69.3, + "race": "KnightErrants", "id": "29b1c5a5-0093-5785-bc61-ef3f3d869826", "state": "In_Orbit", "fleet": null @@ -11462,6 +11571,7 @@ "destination": 79, "speed": 0, "mass": 197.13, + "race": "KnightErrants", "id": "b6de7be5-54a0-5c2b-8e91-94e7fe2dd9dd", "state": "In_Orbit", "fleet": null @@ -11480,6 +11590,7 @@ "destination": 685, "speed": 0, "mass": 69.3, + "race": "KnightErrants", "id": "7d8c85ae-6a1d-5500-b2fc-cd354713117c", "state": "In_Orbit", "fleet": null @@ -11498,6 +11609,7 @@ "destination": 669, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "730a79a1-9432-5ab4-a5f9-f250892a5f87", "state": "In_Orbit", "fleet": null @@ -11516,6 +11628,7 @@ "destination": 647, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "52db3931-bb37-5372-a13a-23b875a669f6", "state": "In_Orbit", "fleet": null @@ -11534,6 +11647,7 @@ "destination": 649, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "31233623-71a9-5b29-858d-77dcb14a6c02", "state": "In_Orbit", "fleet": null @@ -11552,6 +11666,7 @@ "destination": 55, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "7053a306-faa3-50ca-934b-bbdb82db0da0", "state": "In_Orbit", "fleet": null @@ -11570,6 +11685,7 @@ "destination": 79, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0fe2d695-eb19-5286-aa75-88562126a37d", "state": "In_Orbit", "fleet": null @@ -11588,6 +11704,7 @@ "destination": 636, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "1d9bd461-a532-5752-bc9f-77a6d4e76d95", "state": "In_Orbit", "fleet": null @@ -11606,6 +11723,7 @@ "destination": 227, "speed": 0, "mass": 98.64, + "race": "KnightErrants", "id": "d1531732-0e91-5043-ba68-ecf6655aa6ed", "state": "In_Orbit", "fleet": null @@ -11624,6 +11742,7 @@ "destination": 227, "speed": 0, "mass": 86.1, + "race": "KnightErrants", "id": "b818a8cb-9e24-54a1-bbed-d69dafb2b7af", "state": "In_Orbit", "fleet": null @@ -11642,6 +11761,7 @@ "destination": 176, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "be2849c1-45a7-5cf3-995a-fc2d8057ce65", "state": "In_Orbit", "fleet": null @@ -11660,6 +11780,7 @@ "destination": 227, "speed": 0, "mass": 91.3, + "race": "KnightErrants", "id": "5f89851c-6aac-5389-88e0-4bd965eebdb7", "state": "In_Orbit", "fleet": null @@ -11678,6 +11799,7 @@ "destination": 227, "speed": 0, "mass": 90.6, + "race": "KnightErrants", "id": "962e84a3-7147-5754-8ee4-dacc5fc0a033", "state": "In_Orbit", "fleet": null @@ -11696,6 +11818,7 @@ "destination": 296, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "983fb832-b457-5c86-896e-65d0ba5c288e", "state": "In_Orbit", "fleet": null @@ -11714,6 +11837,7 @@ "destination": 108, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "91f25671-93af-5bfb-af6c-6af2e25b93cf", "state": "In_Orbit", "fleet": null @@ -11732,6 +11856,7 @@ "destination": 332, "speed": 0, "mass": 98.64, + "race": "KnightErrants", "id": "1210f8ec-7ca1-5c90-8ab2-8ed6555643f7", "state": "In_Orbit", "fleet": null @@ -11750,6 +11875,7 @@ "destination": 649, "speed": 0, "mass": 86.3, + "race": "KnightErrants", "id": "e98e75de-5217-5d02-8c68-8bcf4cbba97d", "state": "In_Orbit", "fleet": null @@ -11768,6 +11894,7 @@ "destination": 500, "speed": 0, "mass": 91.5, + "race": "KnightErrants", "id": "b6dbc0b9-d524-59e8-a4ea-0bbde0d7956e", "state": "In_Orbit", "fleet": null @@ -11786,6 +11913,7 @@ "destination": 500, "speed": 0, "mass": 90.8, + "race": "KnightErrants", "id": "bc283cda-1d59-5a33-9518-53a2550b92ec", "state": "In_Orbit", "fleet": null @@ -11804,6 +11932,7 @@ "destination": 500, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "bc7a17d7-938e-5032-bbdf-4777116f0abc", "state": "In_Orbit", "fleet": null @@ -11822,6 +11951,7 @@ "destination": 338, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "3c4f0aca-5af9-55ed-88ef-022cd4d2c27a", "state": "In_Orbit", "fleet": null @@ -11840,6 +11970,7 @@ "destination": 222, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "958eadda-28f4-5966-9dc4-8ba2a99162e6", "state": "In_Orbit", "fleet": null @@ -11858,6 +11989,7 @@ "destination": 15, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "57fc1395-9108-533d-a25a-13a001337d09", "state": "In_Orbit", "fleet": null @@ -11876,6 +12008,7 @@ "destination": 251, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ac28588d-07e3-5b90-8fb6-6401cf38c7db", "state": "In_Orbit", "fleet": null @@ -11894,6 +12027,7 @@ "destination": 72, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "75cf0597-eb5d-5441-b83e-b75c41ba0aff", "state": "In_Orbit", "fleet": null @@ -11912,6 +12046,7 @@ "destination": 434, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "c9757095-f5c1-502c-b842-1fcd1b93c226", "state": "In_Orbit", "fleet": null @@ -11930,6 +12065,7 @@ "destination": 340, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "f4109d1a-9026-588f-b95e-d21b8b256130", "state": "In_Orbit", "fleet": null @@ -11948,6 +12084,7 @@ "destination": 305, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2a6941d9-e0c1-5c32-ab7d-a1f26fa74a59", "state": "In_Orbit", "fleet": null @@ -11966,6 +12103,7 @@ "destination": 409, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "17f51955-c4f5-5fc6-9339-82e024fa835a", "state": "In_Orbit", "fleet": null @@ -11984,6 +12122,7 @@ "destination": 624, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "532aee0b-6fb8-5c5c-ae3c-4f753e8aef20", "state": "In_Orbit", "fleet": null @@ -12002,6 +12141,7 @@ "destination": 500, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "9ca8a80e-624f-54fa-91ab-44d2badb4bfa", "state": "In_Orbit", "fleet": null @@ -12020,6 +12160,7 @@ "destination": 227, "speed": 0, "mass": 2, + "race": "KnightErrants", "id": "465703ad-7f21-520d-a3f6-4e49a72bb269", "state": "In_Orbit", "fleet": null @@ -12038,6 +12179,7 @@ "destination": 116, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "3abc074b-4046-580b-8c72-197e6fa42e23", "state": "In_Orbit", "fleet": null @@ -12056,6 +12198,7 @@ "destination": 38, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "49e9480a-6cfe-5ff5-99e4-8876bbec6882", "state": "In_Orbit", "fleet": null @@ -12074,6 +12217,7 @@ "destination": 438, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "70381094-4273-5ec5-9d97-3a2daead4864", "state": "In_Orbit", "fleet": null @@ -12092,6 +12236,7 @@ "destination": 2, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "6ee5da70-4255-5d2c-8ee2-f488a0118b96", "state": "In_Orbit", "fleet": null @@ -12110,6 +12255,7 @@ "destination": 421, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ac5cc7e9-4680-5078-80fd-edd56af41a11", "state": "In_Orbit", "fleet": null @@ -12128,6 +12274,7 @@ "destination": 569, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "3fb60e08-66f1-5e2f-91e1-7a387f0f0c1d", "state": "In_Orbit", "fleet": null @@ -12146,6 +12293,7 @@ "destination": 436, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "1258fd4e-661b-5c85-a2e7-f922a1aba59e", "state": "In_Orbit", "fleet": null @@ -12164,6 +12312,7 @@ "destination": 523, "speed": 0, "mass": 24.75, + "race": "KnightErrants", "id": "84775467-eac9-58b8-8466-88eb48cbba8c", "state": "In_Orbit", "fleet": null @@ -12182,6 +12331,7 @@ "destination": 495, "speed": 0, "mass": 24.72, + "race": "KnightErrants", "id": "cbcb1b66-59a9-59ca-b2b8-7abf154dc6a6", "state": "In_Orbit", "fleet": null @@ -12202,6 +12352,7 @@ "range": 80.13, "speed": 0, "mass": 16.5, + "race": "KnightErrants", "id": "ccd6f110-97a5-5081-a007-38f8e1387de7", "state": "In_Space", "fleet": null @@ -12220,6 +12371,7 @@ "destination": 225, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "10f8b324-13a3-5912-a887-64d0e503c591", "state": "In_Orbit", "fleet": null @@ -12238,6 +12390,7 @@ "destination": 344, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "6e6a5177-71de-5f7d-834d-4fe153bd0d73", "state": "In_Orbit", "fleet": null @@ -12256,6 +12409,7 @@ "destination": 127, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "7d90339f-488f-58d8-a118-737dfe82eb0f", "state": "In_Orbit", "fleet": null @@ -12274,6 +12428,7 @@ "destination": 632, "speed": 0, "mass": 8.15, + "race": "KnightErrants", "id": "7d56f165-c2aa-51fa-84d3-239dfa277f79", "state": "In_Orbit", "fleet": null @@ -12292,6 +12447,7 @@ "destination": 20, "speed": 0, "mass": 7.2, + "race": "KnightErrants", "id": "b66af58a-7039-57dd-96e6-f268d81dc80a", "state": "In_Orbit", "fleet": null @@ -12310,6 +12466,7 @@ "destination": 134, "speed": 0, "mass": 7.2, + "race": "KnightErrants", "id": "2aec44f4-b3fc-53f7-af01-06565eda6fa7", "state": "In_Orbit", "fleet": null @@ -12328,6 +12485,7 @@ "destination": 506, "speed": 0, "mass": 7.2, + "race": "KnightErrants", "id": "e204b22e-3112-59d6-8571-2aecf3a0be4e", "state": "In_Orbit", "fleet": null @@ -12346,6 +12504,7 @@ "destination": 46, "speed": 0, "mass": 7.2, + "race": "KnightErrants", "id": "4c565d59-f50a-5509-8765-bcaf42f056ec", "state": "In_Orbit", "fleet": null @@ -12364,6 +12523,7 @@ "destination": 343, "speed": 0, "mass": 7.81, + "race": "KnightErrants", "id": "51288ce4-b69d-561a-a4a0-a4b408831118", "state": "In_Orbit", "fleet": null @@ -12382,6 +12542,7 @@ "destination": 506, "speed": 0, "mass": 7.07, + "race": "KnightErrants", "id": "f3aed80b-f85f-5cd1-b6c5-e5e99c03918d", "state": "In_Orbit", "fleet": null @@ -12400,6 +12561,7 @@ "destination": 489, "speed": 0, "mass": 7.07, + "race": "KnightErrants", "id": "e59329f5-4a55-59af-b48e-688d7dbb94b1", "state": "In_Orbit", "fleet": null @@ -12418,6 +12580,7 @@ "destination": 525, "speed": 0, "mass": 7.07, + "race": "KnightErrants", "id": "2e57764e-c658-562c-92da-299af97960d7", "state": "In_Orbit", "fleet": null @@ -12436,6 +12599,7 @@ "destination": 669, "speed": 0, "mass": 33.7, + "race": "KnightErrants", "id": "8a4edf71-a9c0-5c2d-ab80-d7f7842e3fd2", "state": "In_Orbit", "fleet": null @@ -12454,6 +12618,7 @@ "destination": 403, "speed": 0, "mass": 2, + "race": "KnightErrants", "id": "d0f02b60-afe1-5ad0-95f7-416c28486d19", "state": "In_Orbit", "fleet": null @@ -12472,6 +12637,7 @@ "destination": 649, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "61dd202c-344a-595a-afcb-44a33ed76787", "state": "In_Orbit", "fleet": null @@ -12490,6 +12656,7 @@ "destination": 500, "speed": 0, "mass": 7.07, + "race": "KnightErrants", "id": "291c8956-14ab-5283-936c-08f84bf97a80", "state": "In_Orbit", "fleet": null @@ -12508,6 +12675,7 @@ "destination": 403, "speed": 0, "mass": 7.07, + "race": "KnightErrants", "id": "d72f12bc-7a7f-5dd0-bcab-0881081c1806", "state": "In_Orbit", "fleet": null @@ -12526,6 +12694,7 @@ "destination": 489, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "13a322b6-93d4-53c8-ab6b-02b6bafc575b", "state": "In_Orbit", "fleet": null @@ -12544,6 +12713,7 @@ "destination": 500, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "d39b1831-22e6-5131-bd25-4690f4277a23", "state": "In_Orbit", "fleet": null @@ -12562,6 +12732,7 @@ "destination": 646, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "f96cd083-0e78-56e2-a2fd-79ca77ea635f", "state": "In_Orbit", "fleet": null @@ -12580,6 +12751,7 @@ "destination": 694, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "3f4fbdbb-63e1-5055-977e-2921093fddc3", "state": "In_Orbit", "fleet": null @@ -12598,6 +12770,7 @@ "destination": 275, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "33c431fa-5878-5fc0-9e3d-0ba3cd7c1b09", "state": "In_Orbit", "fleet": null @@ -12616,6 +12789,7 @@ "destination": 74, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "5c133747-4900-5436-94a8-64cd06190a8c", "state": "In_Orbit", "fleet": null @@ -12634,6 +12808,7 @@ "destination": 661, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "3a70f27e-4c13-5643-ba15-57cc89684d2a", "state": "In_Orbit", "fleet": null @@ -12652,6 +12827,7 @@ "destination": 201, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "50361e29-9d6c-5d28-be0b-00c4d82b966f", "state": "In_Orbit", "fleet": null @@ -12670,6 +12846,7 @@ "destination": 29, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "bc9e5a72-4f34-5c4f-910a-9b1e52393dd4", "state": "In_Orbit", "fleet": null @@ -12688,6 +12865,7 @@ "destination": 377, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "35014c45-88d1-57f9-b40c-8f79519f8dff", "state": "In_Orbit", "fleet": null @@ -12706,6 +12884,7 @@ "destination": 665, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "c61ba59f-e2ba-5c1b-bfe4-92ea3cdd00cd", "state": "In_Orbit", "fleet": null @@ -12724,6 +12903,7 @@ "destination": 27, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2328307c-3792-53cf-a84d-f1294cab0189", "state": "In_Orbit", "fleet": null @@ -12742,6 +12922,7 @@ "destination": 32, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "cc45c6bc-b2ef-5ec1-be90-c3e0586ca304", "state": "In_Orbit", "fleet": null @@ -12760,6 +12941,7 @@ "destination": 669, "speed": 0, "mass": 100.06, + "race": "KnightErrants", "id": "91090a79-7fbc-5fd9-ae7c-3550391f2aa5", "state": "In_Orbit", "fleet": null @@ -12778,6 +12960,7 @@ "destination": 669, "speed": 0, "mass": 2, + "race": "KnightErrants", "id": "9ae98c52-5324-56d3-ac98-65995c1c2e0f", "state": "In_Orbit", "fleet": null @@ -12796,6 +12979,7 @@ "destination": 669, "speed": 0, "mass": 69.52, + "race": "KnightErrants", "id": "58db4d5f-ad25-5098-99bf-466bc4dec96c", "state": "In_Orbit", "fleet": null @@ -12814,6 +12998,7 @@ "destination": 461, "speed": 0, "mass": 158.01, + "race": "KnightErrants", "id": "a1cecd6f-27a1-51b0-9d7f-28803ac6ae2d", "state": "In_Orbit", "fleet": null @@ -12832,6 +13017,7 @@ "destination": 97, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "d4d24c73-a2d9-53bc-a6bf-1c89261084e6", "state": "In_Orbit", "fleet": null @@ -12850,6 +13036,7 @@ "destination": 461, "speed": 0, "mass": 94.08, + "race": "KnightErrants", "id": "9a726455-7d55-5a64-a229-38c8c957b513", "state": "In_Orbit", "fleet": null @@ -12868,6 +13055,7 @@ "destination": 461, "speed": 0, "mass": 2.02, + "race": "KnightErrants", "id": "c3865190-4716-5e3b-8704-c828d90f43b3", "state": "In_Orbit", "fleet": null @@ -12886,6 +13074,7 @@ "destination": 461, "speed": 0, "mass": 2.06, + "race": "KnightErrants", "id": "6ee84555-12e2-578a-abd9-54c4d0276589", "state": "In_Orbit", "fleet": null @@ -12904,6 +13093,7 @@ "destination": 449, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "350d3d10-78b4-5e79-a1d8-ac9838e56251", "state": "In_Orbit", "fleet": null @@ -12924,6 +13114,7 @@ "range": 95.14, "speed": 0, "mass": 226.18, + "race": "KnightErrants", "id": "cd9a9406-459f-5bc2-a895-0483c5917c27", "state": "In_Space", "fleet": null @@ -12942,6 +13133,7 @@ "destination": 461, "speed": 0, "mass": 100.6, + "race": "KnightErrants", "id": "5d5f54c1-993b-52fe-9187-104198ef50a9", "state": "In_Orbit", "fleet": null @@ -12960,6 +13152,7 @@ "destination": 682, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "79e1f511-7254-5072-a4bd-2256e8f6eff7", "state": "In_Orbit", "fleet": null @@ -12978,6 +13171,7 @@ "destination": 461, "speed": 0, "mass": 165.77, + "race": "KnightErrants", "id": "adfd2df2-fe26-5811-8a48-0b7b0cf4760a", "state": "In_Orbit", "fleet": null @@ -12996,6 +13190,7 @@ "destination": 685, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "6b736c27-0a5e-5cf4-94ee-c81a9e43c434", "state": "In_Orbit", "fleet": null @@ -13014,6 +13209,7 @@ "destination": 403, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "df096589-4b23-5156-82c5-27d5bfd50ce5", "state": "In_Orbit", "fleet": null @@ -13032,6 +13228,7 @@ "destination": 446, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "38778841-5b4d-51a4-9765-2a42f2a6c61a", "state": "In_Orbit", "fleet": null @@ -13050,6 +13247,7 @@ "destination": 535, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "169e12ff-a2b1-5010-bd05-a70049b5d284", "state": "In_Orbit", "fleet": null @@ -13068,6 +13266,7 @@ "destination": 173, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "509fcd47-3d3a-5bc3-901d-ac3869d056da", "state": "In_Orbit", "fleet": null @@ -13086,6 +13285,7 @@ "destination": 641, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "769d8820-2baa-5cc1-a2d1-decaac6e6e39", "state": "In_Orbit", "fleet": null @@ -13104,6 +13304,7 @@ "destination": 528, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "aff5ca15-82a3-5424-88bd-030dcb6d1130", "state": "In_Orbit", "fleet": null @@ -13122,6 +13323,7 @@ "destination": 698, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "7026f391-018a-5991-8e99-70bfcb261ac9", "state": "In_Orbit", "fleet": null @@ -13140,6 +13342,7 @@ "destination": 538, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "cf41bf43-c875-5cba-8fba-f1fa3067870e", "state": "In_Orbit", "fleet": null @@ -13158,6 +13361,7 @@ "destination": 73, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "fc8b445f-939b-5961-9869-89a010c9b9fa", "state": "In_Orbit", "fleet": null @@ -13176,6 +13380,7 @@ "destination": 261, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "49233dcb-32e6-5e8e-b986-373658c35306", "state": "In_Orbit", "fleet": null @@ -13194,6 +13399,7 @@ "destination": 26, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "8a3eef0f-26b6-5ce9-9c8b-a8b89325700d", "state": "In_Orbit", "fleet": null @@ -13212,6 +13418,7 @@ "destination": 295, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "4d28e2de-c5b2-589c-be0d-b6e7ca70f231", "state": "In_Orbit", "fleet": null @@ -13230,6 +13437,7 @@ "destination": 599, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "b8b47be5-4b11-51aa-baa2-5483c8f9975a", "state": "In_Orbit", "fleet": null @@ -13248,6 +13456,7 @@ "destination": 593, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "374545f0-4bcf-5620-9889-c74a29458daf", "state": "In_Orbit", "fleet": null @@ -13266,6 +13475,7 @@ "destination": 358, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "46cabe0d-cb7d-560b-840f-005445357416", "state": "In_Orbit", "fleet": null @@ -13284,6 +13494,7 @@ "destination": 376, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "7d677af7-fb32-5fbd-ac9c-94348b1027e5", "state": "In_Orbit", "fleet": null @@ -13302,6 +13513,7 @@ "destination": 471, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "ebae3df4-1e9b-5de6-9db8-a412c82dfaa4", "state": "In_Orbit", "fleet": null @@ -13320,6 +13532,7 @@ "destination": 378, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "28f206c8-9ea1-57d9-9492-7076d9970d7c", "state": "In_Orbit", "fleet": null @@ -13338,6 +13551,7 @@ "destination": 664, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2e50b560-1497-599e-8360-c165e9867fd2", "state": "In_Orbit", "fleet": null @@ -13358,6 +13572,7 @@ "range": 7.01, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "52d1646e-a78b-52e3-8e7e-9c452545ee99", "state": "In_Space", "fleet": null @@ -13378,6 +13593,7 @@ "range": 9.92, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "6d9628be-7884-5da6-ae10-064423bc9005", "state": "In_Space", "fleet": null @@ -13398,6 +13614,7 @@ "range": 10.57, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "65e88f1f-caf2-57ba-b412-da5def6e0b45", "state": "In_Space", "fleet": null @@ -13416,6 +13633,7 @@ "destination": 410, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "9960a580-efc5-5ee5-a2f7-18f94c2281ee", "state": "In_Orbit", "fleet": null @@ -13436,6 +13654,7 @@ "range": 4.83, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2e0cd1ed-2579-54f4-9564-581528b5c474", "state": "In_Space", "fleet": null @@ -13456,6 +13675,7 @@ "range": 11.57, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "53550698-fc7e-55b3-a36b-77a912116143", "state": "In_Space", "fleet": null @@ -13476,6 +13696,7 @@ "range": 9.48, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "48343ed7-3ff2-5680-a59d-e5f5bb7a1eeb", "state": "In_Space", "fleet": null @@ -13496,6 +13717,7 @@ "range": 9.85, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "aa9fa0a4-25da-557d-8c58-0f37de7a67c4", "state": "In_Space", "fleet": null @@ -13516,6 +13738,7 @@ "range": 9.99, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "01a3fae0-6e6e-5d24-a2c6-d7b5f34fefde", "state": "In_Space", "fleet": null @@ -13536,6 +13759,7 @@ "range": 76.76, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "67e328f5-f066-51b1-9bf1-d941b9f8d170", "state": "In_Space", "fleet": null @@ -13556,6 +13780,7 @@ "range": 106.34, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "78077809-c920-5502-b23c-e3e75e6e4735", "state": "In_Space", "fleet": null @@ -13576,6 +13801,7 @@ "range": 82.19, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "a6ad6c1c-da81-52d3-aeb2-b6be314867b1", "state": "In_Space", "fleet": null @@ -13596,6 +13822,7 @@ "range": 138.68, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "aaac542c-ccca-5ed1-b6c4-d4a86462b9be", "state": "In_Space", "fleet": null @@ -13616,6 +13843,7 @@ "range": 148.21, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "62ad9d00-ccde-5c0a-8e00-28d77f4f1382", "state": "In_Space", "fleet": null @@ -13636,6 +13864,7 @@ "range": 127.47, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "4d8191b7-6ddc-5e23-9224-9c1ac15e7443", "state": "In_Space", "fleet": null @@ -13656,6 +13885,7 @@ "range": 134.93, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "49b975eb-908c-59ef-90ba-d889adf1b758", "state": "In_Space", "fleet": null @@ -13676,6 +13906,7 @@ "range": 56.65, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "f47cb79d-a1c7-5283-b96a-35e33475879a", "state": "In_Space", "fleet": null @@ -13696,6 +13927,7 @@ "range": 106.82, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "9827abd5-0454-5632-b366-1c7c22e55601", "state": "In_Space", "fleet": null @@ -13716,6 +13948,7 @@ "range": 176.96, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "b04c507a-e2b4-5887-879c-305fe8e91e3b", "state": "In_Space", "fleet": null @@ -13736,6 +13969,7 @@ "range": 180.71, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "e0e00db1-29e4-515f-821a-89e1fe1b70b0", "state": "In_Space", "fleet": null @@ -13756,6 +13990,7 @@ "range": 138.38, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "0fad5faf-9c6d-5265-84e2-d5d649f2eced", "state": "In_Space", "fleet": null @@ -13776,6 +14011,7 @@ "range": 165.96, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "016c0596-ebd8-57be-9b6a-fa72595a2010", "state": "In_Space", "fleet": null @@ -13796,6 +14032,7 @@ "range": 151.98, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "07919134-41a3-5a58-a1f9-98e40424ba7a", "state": "In_Space", "fleet": null @@ -13816,6 +14053,7 @@ "range": 79.27, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "164e3a90-74ef-5cbd-b5bb-f78c79b2e9ae", "state": "In_Space", "fleet": null @@ -13836,6 +14074,7 @@ "range": 112.45, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "13f3eede-a2a6-5924-b21a-0a22733ba83e", "state": "In_Space", "fleet": null @@ -13856,6 +14095,7 @@ "range": 163.8, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "a5a90c23-0feb-5895-8ce3-e87176312a04", "state": "In_Space", "fleet": null @@ -13876,6 +14116,7 @@ "range": 181.65, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "b4208d2a-8959-588a-80f2-de007751164d", "state": "In_Space", "fleet": null @@ -13896,6 +14137,7 @@ "range": 77.54, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "dd4e8b6f-d2a7-5ba5-a348-2b8ece7a78dd", "state": "In_Space", "fleet": null @@ -13916,6 +14158,7 @@ "range": 66.8, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "acb18d01-8671-5456-9e2b-4b7f67a9b20f", "state": "In_Space", "fleet": null @@ -13936,6 +14179,7 @@ "range": 85.39, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "2e1bb879-b5c2-5bc5-ae75-f5dc8371840e", "state": "In_Space", "fleet": null @@ -13956,6 +14200,7 @@ "range": 98.75, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "d7e9985e-3983-5a86-abf6-7657721f9750", "state": "In_Space", "fleet": null @@ -13976,6 +14221,7 @@ "range": 30.77, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "c000a716-3604-52ea-ac35-139e6e21c04b", "state": "In_Space", "fleet": null @@ -13996,6 +14242,7 @@ "range": 33.14, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "25daa7d2-1782-5fe6-a90f-ef0b2a04a33a", "state": "In_Space", "fleet": null @@ -14016,6 +14263,7 @@ "range": 19.25, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "708ff4b5-27f4-5737-9362-6546c4959498", "state": "In_Space", "fleet": null @@ -14036,6 +14284,7 @@ "range": 26.12, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "47486a43-b0c1-5f70-8386-ff21e55540d9", "state": "In_Space", "fleet": null @@ -14056,6 +14305,7 @@ "range": 77.9, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "e3e4d91d-ce2b-5ff3-8be3-21a1b5b9defd", "state": "In_Space", "fleet": null @@ -14076,6 +14326,7 @@ "range": 79.76, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "1db9842b-4b0c-5d31-bcd6-32445a88e738", "state": "In_Space", "fleet": null @@ -14096,6 +14347,7 @@ "range": 82.09, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "e737e25b-773c-5423-8fec-906f61690042", "state": "In_Space", "fleet": null @@ -14116,6 +14368,7 @@ "range": 81.16, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "72ee480b-c932-59df-9ec8-cbb4ad2f6a65", "state": "In_Space", "fleet": null @@ -14136,6 +14389,7 @@ "range": 36.89, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "e798af87-055f-5745-81e3-2788d6ac499c", "state": "In_Space", "fleet": null @@ -14156,6 +14410,7 @@ "range": 38.29, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "bcbafa36-3fdb-54e0-96c6-1e59d42938dd", "state": "In_Space", "fleet": null @@ -14176,6 +14431,7 @@ "range": 74.9, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "10209860-d32f-56f7-833b-20391a0299ee", "state": "In_Space", "fleet": null @@ -14196,6 +14452,7 @@ "range": 85.16, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "411af855-85bb-59ae-ae91-682bac107273", "state": "In_Space", "fleet": null @@ -14216,6 +14473,7 @@ "range": 56.07, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "77da9a3b-afa2-5f13-81bb-2698b653e577", "state": "In_Space", "fleet": null @@ -14236,6 +14494,7 @@ "range": 58.07, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "7f8045a1-1a35-5eb1-b2ff-58d7cb749ad1", "state": "In_Space", "fleet": null @@ -14256,6 +14515,7 @@ "range": 19.28, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "8745bcb9-5738-51ed-9392-bb2fbf41afb3", "state": "In_Space", "fleet": null @@ -14276,6 +14536,7 @@ "range": 75.66, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "514c69ff-50c6-599f-9992-18ebd055cd8c", "state": "In_Space", "fleet": null @@ -14294,6 +14555,7 @@ "destination": 523, "speed": 0, "mass": 2.26, + "race": "KnightErrants", "id": "62289ba3-3ed7-5038-9445-4bcb48cdc74b", "state": "In_Orbit", "fleet": null @@ -14312,6 +14574,7 @@ "destination": 447, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "af00a2ad-a24b-5401-a91a-b9c6a84c22a2", "state": "In_Orbit", "fleet": null @@ -14330,6 +14593,7 @@ "destination": 176, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "5ddf5b06-d550-5df7-a0ba-3a5d9f44b9a9", "state": "In_Orbit", "fleet": null @@ -14348,6 +14612,7 @@ "destination": 17, "speed": 0, "mass": 99.01, + "race": "KnightErrants", "id": "a8adb08d-5cb8-53a1-b44e-d98ddc8d5e82", "state": "In_Orbit", "fleet": null @@ -14366,6 +14631,7 @@ "destination": 38, "speed": 0, "mass": 86.39, + "race": "KnightErrants", "id": "0f998df9-a71d-58fe-a417-4fc5ae5bdda1", "state": "In_Orbit", "fleet": null @@ -14384,6 +14650,7 @@ "destination": 87, "speed": 0, "mass": 2.06, + "race": "KnightErrants", "id": "24d0b57c-eef0-54f8-804c-f6cf2158159e", "state": "In_Orbit", "fleet": null @@ -14402,6 +14669,7 @@ "destination": 114, "speed": 0, "mass": 156.96, + "race": "KnightErrants", "id": "c543c1e7-bf75-5166-936d-85e205f40e08", "state": "In_Orbit", "fleet": null @@ -14420,6 +14688,7 @@ "destination": 176, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "30266a09-a9a6-52a4-a74d-5ae9d025cf37", "state": "In_Orbit", "fleet": null @@ -14438,6 +14707,7 @@ "destination": 223, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "c52da430-b8d5-58ca-a46a-45e5229db11b", "state": "In_Orbit", "fleet": null @@ -14456,6 +14726,7 @@ "destination": 282, "speed": 0, "mass": 93.03, + "race": "KnightErrants", "id": "bfd105c5-999c-5726-bf24-34e392780b82", "state": "In_Orbit", "fleet": null @@ -14474,6 +14745,7 @@ "destination": 296, "speed": 0, "mass": 2.02, + "race": "KnightErrants", "id": "f92f17a9-42cc-5197-9c55-74a0791389a5", "state": "In_Orbit", "fleet": null @@ -14492,6 +14764,7 @@ "destination": 338, "speed": 0, "mass": 2.06, + "race": "KnightErrants", "id": "deafac4a-ce58-5420-a78f-5a172fbd0cee", "state": "In_Orbit", "fleet": null @@ -14510,6 +14783,7 @@ "destination": 446, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "5deafca8-eb6b-5931-be45-05ded30e8f98", "state": "In_Orbit", "fleet": null @@ -14528,6 +14802,7 @@ "destination": 447, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "d4d73402-bd32-5d01-bfa5-9f41ede0ba3a", "state": "In_Orbit", "fleet": null @@ -14546,6 +14821,7 @@ "destination": 495, "speed": 0, "mass": 2, + "race": "KnightErrants", "id": "c889d72f-ad40-56d8-9907-a789a95d0e4a", "state": "In_Orbit", "fleet": null @@ -14564,6 +14840,7 @@ "destination": 507, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "5353f355-7b04-5b0c-b788-e3a95b616dc5", "state": "In_Orbit", "fleet": null @@ -14582,6 +14859,7 @@ "destination": 523, "speed": 0, "mass": 2.06, + "race": "KnightErrants", "id": "97c4d8da-fba5-5a50-a824-dc266c95d09b", "state": "In_Orbit", "fleet": null @@ -14600,6 +14878,7 @@ "destination": 532, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "5f57860f-c7bb-5814-8c72-1b50d7d29aa8", "state": "In_Orbit", "fleet": null @@ -14618,6 +14897,7 @@ "destination": 535, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "de535a00-ff5c-50ce-ac08-2b59b616ae79", "state": "In_Orbit", "fleet": null @@ -14636,6 +14916,7 @@ "destination": 572, "speed": 0, "mass": 99.55, + "race": "KnightErrants", "id": "205440a2-16bc-5bea-8b11-87aac240a7be", "state": "In_Orbit", "fleet": null @@ -14654,6 +14935,7 @@ "destination": 622, "speed": 0, "mass": 2.04, + "race": "KnightErrants", "id": "63f96192-6da0-5893-9990-1f489505b3ed", "state": "In_Orbit", "fleet": null @@ -14672,6 +14954,7 @@ "destination": 636, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "f656f713-f27d-5dee-b4a8-5410045e105a", "state": "In_Orbit", "fleet": null @@ -14690,6 +14973,7 @@ "destination": 669, "speed": 0, "mass": 1, + "race": "KnightErrants", "id": "3993de6e-18b2-503a-a52d-3338c79e5026", "state": "In_Orbit", "fleet": null @@ -14708,6 +14992,7 @@ "destination": 679, "speed": 0, "mass": 164.72, + "race": "KnightErrants", "id": "796fa3f5-b229-5fa8-8389-757e90c7c437", "state": "In_Orbit", "fleet": null @@ -14727,7 +15012,8 @@ "load": 0, "destination": 130, "speed": 0, - "mass": 19.8 + "mass": 19.8, + "race": "Monstrai" }, { "number": 1, @@ -14742,7 +15028,8 @@ "load": 0, "destination": 108, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -14757,7 +15044,8 @@ "load": 0, "destination": 646, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -14772,7 +15060,8 @@ "load": 0, "destination": 694, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -14787,7 +15076,8 @@ "load": 0, "destination": 275, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -14802,7 +15092,8 @@ "load": 0, "destination": 74, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -14817,7 +15108,8 @@ "load": 0, "destination": 471, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -14832,7 +15124,8 @@ "load": 0, "destination": 29, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -14847,7 +15140,8 @@ "load": 0, "destination": 201, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -14862,7 +15156,8 @@ "load": 0, "destination": 664, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -14877,7 +15172,8 @@ "load": 0, "destination": 661, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -14892,7 +15188,8 @@ "load": 0, "destination": 130, "speed": 0, - "mass": 198 + "mass": 198, + "race": "Monstrai" }, { "number": 1, @@ -14907,7 +15204,8 @@ "load": 0, "destination": 130, "speed": 0, - "mass": 191.9 + "mass": 191.9, + "race": "Monstrai" }, { "number": 1, @@ -14922,7 +15220,8 @@ "load": 0, "destination": 130, "speed": 0, - "mass": 156.94 + "mass": 156.94, + "race": "Monstrai" }, { "number": 1, @@ -14937,7 +15236,8 @@ "load": 0, "destination": 79, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -14952,7 +15252,8 @@ "load": 0, "destination": 130, "speed": 0, - "mass": 95.96 + "mass": 95.96, + "race": "Monstrai" }, { "number": 1, @@ -14967,7 +15268,8 @@ "load": 0, "destination": 436, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 46, @@ -14982,7 +15284,8 @@ "load": 0, "destination": 130, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 43, @@ -14997,7 +15300,8 @@ "load": 0, "destination": 130, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 30, @@ -15012,7 +15316,8 @@ "load": 0, "destination": 130, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -15027,7 +15332,8 @@ "load": 0, "destination": 409, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -15042,7 +15348,8 @@ "load": 0, "destination": 665, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -15057,7 +15364,8 @@ "load": 0, "destination": 27, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -15072,7 +15380,8 @@ "load": 0, "destination": 438, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -15087,7 +15396,8 @@ "load": 0, "destination": 569, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -15102,7 +15412,8 @@ "load": 0, "destination": 624, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -15117,7 +15428,8 @@ "load": 0, "destination": 434, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -15132,7 +15444,8 @@ "load": 0, "destination": 119, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 45, @@ -15147,7 +15460,8 @@ "load": 0, "destination": 130, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 10, @@ -15162,7 +15476,8 @@ "load": 0, "destination": 130, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 21, @@ -15177,7 +15492,8 @@ "load": 0, "destination": 130, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 23, @@ -15192,7 +15508,8 @@ "load": 0, "destination": 130, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -15207,7 +15524,8 @@ "load": 0, "destination": 305, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -15222,7 +15540,8 @@ "load": 0, "destination": 685, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -15237,7 +15556,8 @@ "load": 0, "destination": 222, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -15252,7 +15572,8 @@ "load": 0, "destination": 340, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -15267,7 +15588,8 @@ "load": 0, "destination": 25, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -15282,7 +15604,8 @@ "load": 0, "destination": 377, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -15297,7 +15620,8 @@ "load": 0, "destination": 116, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -15312,7 +15636,8 @@ "load": 0, "destination": 647, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -15327,7 +15652,8 @@ "load": 0, "destination": 636, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -15342,7 +15668,8 @@ "load": 0, "destination": 130, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Monstrai" }, { "number": 1, @@ -15357,7 +15684,8 @@ "load": 0, "destination": 366, "speed": 0, - "mass": 34.17 + "mass": 34.17, + "race": "Monstrai" }, { "number": 1, @@ -15372,7 +15700,8 @@ "load": 34, "destination": 314, "speed": 0, - "mass": 83.43 + "mass": 83.43, + "race": "TwelvePointedCross" }, { "number": 1, @@ -15387,7 +15716,8 @@ "load": 0, "destination": 85, "speed": 0, - "mass": 98.03 + "mass": 98.03, + "race": "TwelvePointedCross" }, { "number": 1, @@ -15402,7 +15732,8 @@ "load": 166.69, "destination": 663, "speed": 0, - "mass": 264.72 + "mass": 264.72, + "race": "TwelvePointedCross" }, { "number": 2, @@ -15417,7 +15748,8 @@ "load": 0, "destination": 690, "speed": 0, - "mass": 49.4 + "mass": 49.4, + "race": "TwelvePointedCross" }, { "number": 1, @@ -15432,7 +15764,8 @@ "load": 0, "destination": 207, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 1, @@ -15447,7 +15780,8 @@ "load": 0, "destination": 663, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 1, @@ -15462,7 +15796,8 @@ "load": 0, "destination": 85, "speed": 0, - "mass": 98.81 + "mass": 98.81, + "race": "TwelvePointedCross" }, { "number": 1, @@ -15477,7 +15812,8 @@ "load": 0, "destination": 691, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 1, @@ -15492,7 +15828,8 @@ "load": 34, "destination": 314, "speed": 0, - "mass": 83.43 + "mass": 83.43, + "race": "TwelvePointedCross" }, { "number": 1, @@ -15507,7 +15844,8 @@ "load": 0, "destination": 12, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 1, @@ -15522,7 +15860,8 @@ "load": 0, "destination": 108, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 1, @@ -15537,7 +15876,8 @@ "load": 0, "destination": 366, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 1, @@ -15552,7 +15892,8 @@ "load": 0, "destination": 130, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 1, @@ -15567,7 +15908,8 @@ "load": 0, "destination": 253, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 1, @@ -15582,7 +15924,8 @@ "load": 0, "destination": 56, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 1, @@ -15597,7 +15940,8 @@ "load": 0, "destination": 314, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 1, @@ -15612,7 +15956,8 @@ "load": 34, "destination": 459, "speed": 0, - "mass": 83.43 + "mass": 83.43, + "race": "TwelvePointedCross" }, { "number": 1, @@ -15627,7 +15972,8 @@ "load": 0, "destination": 647, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 1, @@ -15642,7 +15988,8 @@ "load": 0, "destination": 119, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 1, @@ -15657,7 +16004,8 @@ "load": 0, "destination": 673, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 1, @@ -15672,7 +16020,8 @@ "load": 0, "destination": 682, "speed": 0, - "mass": 96.31 + "mass": 96.31, + "race": "TwelvePointedCross" }, { "number": 21, @@ -15687,7 +16036,8 @@ "load": 0, "destination": 682, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 2, @@ -15702,7 +16052,8 @@ "load": 0, "destination": 682, "speed": 0, - "mass": 1 + "mass": 1, + "race": "TwelvePointedCross" }, { "number": 44, @@ -15717,7 +16068,8 @@ "load": 0, "destination": 682, "speed": 0, - "mass": 2 + "mass": 2, + "race": "TwelvePointedCross" }, { "number": 1, @@ -15732,7 +16084,8 @@ "load": 0, "destination": 421, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -15747,7 +16100,8 @@ "load": 0, "destination": 111, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -15762,7 +16116,8 @@ "load": 0, "destination": 559, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -15777,7 +16132,8 @@ "load": 0, "destination": 370, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -15792,7 +16148,8 @@ "load": 0, "destination": 596, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -15807,7 +16164,8 @@ "load": 0, "destination": 513, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -15822,7 +16180,8 @@ "load": 0, "destination": 9, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -15837,7 +16196,8 @@ "load": 0, "destination": 95, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -15852,7 +16212,8 @@ "load": 0, "destination": 523, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -15867,7 +16228,8 @@ "load": 0, "destination": 38, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -15882,7 +16244,8 @@ "load": 0, "destination": 114, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -15897,7 +16260,8 @@ "load": 0, "destination": 206, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -15912,7 +16276,8 @@ "load": 0, "destination": 190, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -15927,7 +16292,8 @@ "load": 0, "destination": 654, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -15942,7 +16308,8 @@ "load": 0, "destination": 679, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -15957,7 +16324,8 @@ "load": 0, "destination": 176, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -15972,7 +16340,8 @@ "load": 0, "destination": 622, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -15987,7 +16356,8 @@ "load": 0, "destination": 447, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16002,7 +16372,8 @@ "load": 0, "destination": 2, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16017,7 +16388,8 @@ "load": 0, "destination": 338, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16032,7 +16404,8 @@ "load": 0, "destination": 87, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16047,7 +16420,8 @@ "load": 0, "destination": 474, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16062,7 +16436,8 @@ "load": 0, "destination": 183, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16077,7 +16452,8 @@ "load": 0, "destination": 17, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16092,7 +16468,8 @@ "load": 0, "destination": 296, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16107,7 +16484,8 @@ "load": 0, "destination": 461, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16122,7 +16500,8 @@ "load": 0, "destination": 635, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16137,7 +16516,8 @@ "load": 0, "destination": 693, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16152,7 +16532,8 @@ "load": 0, "destination": 292, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16167,7 +16548,8 @@ "load": 0, "destination": 369, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16182,7 +16564,8 @@ "load": 0, "destination": 394, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16197,7 +16580,8 @@ "load": 0, "destination": 97, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16212,7 +16596,8 @@ "load": 0, "destination": 231, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16227,7 +16612,8 @@ "load": 0, "destination": 268, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16242,7 +16628,8 @@ "load": 0, "destination": 495, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16257,7 +16644,8 @@ "load": 0, "destination": 282, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16272,7 +16660,8 @@ "load": 0, "destination": 223, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16287,7 +16676,8 @@ "load": 0, "destination": 504, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16302,7 +16692,8 @@ "load": 0, "destination": 549, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16317,7 +16708,8 @@ "load": 0, "destination": 49, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16332,7 +16724,8 @@ "load": 0, "destination": 45, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16347,7 +16740,8 @@ "load": 0, "destination": 243, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16362,7 +16756,8 @@ "load": 0, "destination": 141, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16377,7 +16772,8 @@ "load": 0, "destination": 552, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16392,7 +16788,8 @@ "load": 0, "destination": 519, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16407,7 +16804,8 @@ "load": 0, "destination": 191, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16422,7 +16820,8 @@ "load": 0, "destination": 612, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16437,7 +16836,8 @@ "load": 0, "destination": 697, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16452,7 +16852,8 @@ "load": 0, "destination": 602, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16467,7 +16868,8 @@ "load": 0, "destination": 28, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16482,7 +16884,8 @@ "load": 0, "destination": 90, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16497,7 +16900,8 @@ "load": 0, "destination": 391, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16512,7 +16916,8 @@ "load": 0, "destination": 431, "speed": 0, - "mass": 1 + "mass": 1, + "race": "HAEMHuKu-2000" }, { "number": 1, @@ -16527,7 +16932,8 @@ "load": 0, "destination": 682, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Orla" }, { "number": 5, @@ -16542,7 +16948,8 @@ "load": 0, "destination": 95, "speed": 0, - "mass": 99 + "mass": 99, + "race": "Orla" }, { "number": 1, @@ -16557,7 +16964,8 @@ "load": 0, "destination": 449, "speed": 0, - "mass": 99 + "mass": 99, + "race": "Orla" }, { "number": 1, @@ -16572,7 +16980,8 @@ "load": 0, "destination": 203, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -16587,7 +16996,8 @@ "load": 0, "destination": 530, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -16602,7 +17012,8 @@ "load": 0, "destination": 95, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -16617,7 +17028,8 @@ "load": 0, "destination": 338, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -16632,7 +17044,8 @@ "load": 0, "destination": 38, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -16647,7 +17060,8 @@ "load": 0, "destination": 12, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -16662,7 +17076,8 @@ "load": 0, "destination": 296, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -16677,7 +17092,8 @@ "load": 0, "destination": 17, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -16692,7 +17108,8 @@ "load": 0, "destination": 79, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -16707,7 +17124,8 @@ "load": 0, "destination": 366, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -16722,7 +17140,8 @@ "load": 0, "destination": 87, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -16737,7 +17156,8 @@ "load": 0, "destination": 449, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -16752,7 +17172,8 @@ "load": 0, "destination": 130, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -16767,7 +17188,8 @@ "load": 0, "destination": 587, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -16782,7 +17204,8 @@ "load": 0, "destination": 32, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -16797,7 +17220,8 @@ "load": 0, "destination": 69, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -16812,7 +17236,8 @@ "load": 0, "destination": 48, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -16827,7 +17252,8 @@ "load": 0, "destination": 673, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -16842,7 +17268,8 @@ "load": 0, "destination": 344, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -16857,7 +17284,8 @@ "load": 0, "destination": 396, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -16872,7 +17300,8 @@ "load": 0, "destination": 225, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -16887,7 +17316,8 @@ "load": 0, "destination": 430, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 33, @@ -16902,7 +17332,8 @@ "load": 0, "destination": 24, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bumbastik" }, { "number": 1, @@ -16917,7 +17348,8 @@ "load": 0, "destination": 130, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -16932,7 +17364,8 @@ "load": 0, "destination": 661, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -16947,7 +17380,8 @@ "load": 0, "destination": 366, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -16962,7 +17396,8 @@ "load": 0, "destination": 12, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -16977,7 +17412,8 @@ "load": 0, "destination": 253, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -16992,7 +17428,8 @@ "load": 0, "destination": 664, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17007,7 +17444,8 @@ "load": 0, "destination": 207, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17022,7 +17460,8 @@ "load": 0, "destination": 314, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17037,7 +17476,8 @@ "load": 0, "destination": 108, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17052,7 +17492,8 @@ "load": 0, "destination": 459, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17067,7 +17508,8 @@ "load": 0, "destination": 436, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17082,7 +17524,8 @@ "load": 0, "destination": 108, "speed": 0, - "mass": 100 + "mass": 100, + "race": "Zodiac" }, { "number": 1, @@ -17097,7 +17540,8 @@ "load": 0, "destination": 201, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 2, @@ -17112,7 +17556,8 @@ "load": 0, "destination": 376, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17127,7 +17572,8 @@ "load": 0, "destination": 694, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17142,7 +17588,8 @@ "load": 0, "destination": 196, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17157,7 +17604,8 @@ "load": 0, "destination": 56, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17172,7 +17620,8 @@ "load": 172.55, "destination": 647, "speed": 0, - "mass": 371.55 + "mass": 371.55, + "race": "Zodiac" }, { "number": 1, @@ -17187,7 +17636,8 @@ "load": 0, "destination": 74, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17202,7 +17652,8 @@ "load": 0, "destination": 471, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17217,7 +17668,8 @@ "load": 0, "destination": 691, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17232,7 +17684,8 @@ "load": 0, "destination": 636, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17247,7 +17700,8 @@ "load": 1.05, "destination": 108, "speed": 0, - "mass": 195.05 + "mass": 195.05, + "race": "Zodiac" }, { "number": 1, @@ -17262,7 +17716,8 @@ "load": 0, "destination": 624, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17277,7 +17732,8 @@ "load": 0, "destination": 305, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 9, @@ -17292,7 +17748,8 @@ "load": 1.05, "destination": 647, "speed": 0, - "mass": 5.55 + "mass": 5.55, + "race": "Zodiac" }, { "number": 1, @@ -17307,7 +17764,8 @@ "load": 0, "destination": 685, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17322,7 +17780,8 @@ "load": 0, "destination": 532, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17337,7 +17796,8 @@ "load": 1.05, "destination": 108, "speed": 0, - "mass": 107.05 + "mass": 107.05, + "race": "Zodiac" }, { "number": 2, @@ -17352,7 +17812,8 @@ "load": 0, "destination": 647, "speed": 0, - "mass": 4.5 + "mass": 4.5, + "race": "Zodiac" }, { "number": 1, @@ -17367,7 +17828,8 @@ "load": 0, "destination": 25, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17382,7 +17844,8 @@ "load": 0, "destination": 669, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17397,7 +17860,8 @@ "load": 0, "destination": 85, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17412,7 +17876,8 @@ "load": 0, "destination": 87, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 2, @@ -17427,7 +17892,8 @@ "load": 0, "destination": 434, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17442,7 +17908,8 @@ "load": 0, "destination": 127, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17457,7 +17924,8 @@ "load": 0, "destination": 665, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17472,7 +17940,8 @@ "load": 0, "destination": 15, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17487,7 +17956,8 @@ "load": 0, "destination": 507, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17502,7 +17972,8 @@ "load": 0, "destination": 425, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17517,7 +17988,8 @@ "load": 0, "destination": 538, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 2, @@ -17532,7 +18004,8 @@ "load": 0, "destination": 340, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17547,7 +18020,8 @@ "load": 0, "destination": 222, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17562,7 +18036,8 @@ "load": 0, "destination": 409, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17577,7 +18052,8 @@ "load": 0, "destination": 275, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17592,7 +18068,8 @@ "load": 0, "destination": 458, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17607,7 +18084,8 @@ "load": 0, "destination": 222, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17622,7 +18100,8 @@ "load": 0, "destination": 17, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17637,7 +18116,8 @@ "load": 0, "destination": 282, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17652,7 +18132,8 @@ "load": 0, "destination": 296, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17667,7 +18148,8 @@ "load": 0, "destination": 338, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17682,7 +18164,8 @@ "load": 0, "destination": 38, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 2, @@ -17697,7 +18180,8 @@ "load": 1.05, "destination": 108, "speed": 0, - "mass": 96.55 + "mass": 96.55, + "race": "Zodiac" }, { "number": 330, @@ -17712,7 +18196,8 @@ "load": 0, "destination": 108, "speed": 0, - "mass": 2 + "mass": 2, + "race": "Zodiac" }, { "number": 1, @@ -17727,7 +18212,8 @@ "load": 0, "destination": 447, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17742,7 +18228,8 @@ "load": 0, "destination": 679, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17757,7 +18244,8 @@ "load": 0, "destination": 114, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17772,7 +18260,8 @@ "load": 0, "destination": 223, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17787,7 +18276,8 @@ "load": 0, "destination": 176, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17802,7 +18292,8 @@ "load": 0, "destination": 79, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17817,7 +18308,8 @@ "load": 0, "destination": 690, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17832,7 +18324,8 @@ "load": 0, "destination": 647, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 2, @@ -17847,7 +18340,8 @@ "load": 0, "destination": 116, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 165, @@ -17862,7 +18356,8 @@ "load": 0, "destination": 108, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17877,7 +18372,8 @@ "load": 0, "destination": 461, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17892,7 +18388,8 @@ "load": 0, "destination": 523, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17907,7 +18404,8 @@ "load": 0, "destination": 177, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17922,7 +18420,8 @@ "load": 0, "destination": 622, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17937,7 +18436,8 @@ "load": 0, "destination": 572, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17952,7 +18452,8 @@ "load": 0, "destination": 558, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17967,7 +18468,8 @@ "load": 0, "destination": 376, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17982,7 +18484,8 @@ "load": 0, "destination": 29, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -17997,7 +18500,8 @@ "load": 0, "destination": 298, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 33, @@ -18012,7 +18516,8 @@ "load": 0, "destination": 108, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -18027,7 +18532,8 @@ "load": 1, "destination": 108, "speed": 0, - "mass": 236 + "mass": 236, + "race": "Zodiac" }, { "number": 1, @@ -18042,7 +18548,8 @@ "load": 0, "destination": 663, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 20, @@ -18057,7 +18564,8 @@ "load": 0, "destination": 108, "speed": 0, - "mass": 2 + "mass": 2, + "race": "Zodiac" }, { "number": 1, @@ -18072,7 +18580,8 @@ "load": 0, "destination": 673, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -18087,7 +18596,8 @@ "load": 0, "destination": 203, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -18102,7 +18612,8 @@ "load": 0, "destination": 530, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -18117,7 +18628,8 @@ "load": 0, "destination": 646, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -18132,7 +18644,8 @@ "load": 0, "destination": 27, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -18147,7 +18660,8 @@ "load": 0, "destination": 108, "speed": 0, - "mass": 235 + "mass": 235, + "race": "Zodiac" }, { "number": 1, @@ -18162,7 +18676,8 @@ "load": 0, "destination": 377, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -18177,7 +18692,8 @@ "load": 0, "destination": 119, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -18192,7 +18708,8 @@ "load": 0, "destination": 647, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -18207,7 +18724,8 @@ "load": 0, "destination": 569, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -18222,7 +18740,8 @@ "load": 0, "destination": 438, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -18237,7 +18756,8 @@ "load": 0, "destination": 119, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Zodiac" }, { "number": 1, @@ -18252,7 +18772,8 @@ "load": 0, "destination": 690, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Oselots" }, { "number": 1, @@ -18267,7 +18788,8 @@ "load": 0, "destination": 85, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Oselots" }, { "number": 1, @@ -18282,7 +18804,8 @@ "load": 0, "destination": 108, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Oselots" }, { "number": 1, @@ -18297,7 +18820,8 @@ "load": 0, "destination": 56, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Oselots" }, { "number": 1, @@ -18312,7 +18836,8 @@ "load": 0, "destination": 207, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Oselots" }, { "number": 1, @@ -18327,7 +18852,8 @@ "load": 0, "destination": 314, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Oselots" }, { "number": 1, @@ -18342,7 +18868,8 @@ "load": 0, "destination": 459, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Oselots" }, { "number": 1, @@ -18357,7 +18884,8 @@ "load": 0, "destination": 663, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Oselots" }, { "number": 1, @@ -18372,7 +18900,8 @@ "load": 0, "destination": 196, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Oselots" }, { "number": 8, @@ -18387,7 +18916,8 @@ "load": 0, "destination": 599, "speed": 0, - "mass": 14 + "mass": 14, + "race": "Slimes" }, { "number": 2, @@ -18402,7 +18932,8 @@ "load": 1.71, "destination": 358, "speed": 0, - "mass": 18.23 + "mass": 18.23, + "race": "Slimes" }, { "number": 1, @@ -18417,7 +18948,8 @@ "load": 0, "destination": 378, "speed": 0, - "mass": 8.25 + "mass": 8.25, + "race": "Slimes" }, { "number": 1, @@ -18432,7 +18964,8 @@ "load": 0, "destination": 73, "speed": 0, - "mass": 8.25 + "mass": 8.25, + "race": "Slimes" }, { "number": 169, @@ -18447,7 +18980,8 @@ "load": 0, "destination": 528, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Slimes" }, { "number": 1, @@ -18462,7 +18996,8 @@ "load": 0, "destination": 410, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Slimes" }, { "number": 1, @@ -18477,7 +19012,8 @@ "load": 0, "destination": 585, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Slimes" }, { "number": 3, @@ -18492,7 +19028,8 @@ "load": 0, "destination": 378, "speed": 0, - "mass": 14 + "mass": 14, + "race": "Slimes" }, { "number": 1, @@ -18507,7 +19044,8 @@ "load": 0, "destination": 261, "speed": 0, - "mass": 35.23 + "mass": 35.23, + "race": "Slimes" }, { "number": 1, @@ -18522,7 +19060,8 @@ "load": 0, "destination": 528, "speed": 0, - "mass": 35.44 + "mass": 35.44, + "race": "Slimes" }, { "number": 1, @@ -18537,7 +19076,8 @@ "load": 34.95, "destination": 26, "speed": 0, - "mass": 53.32 + "mass": 53.32, + "race": "Slimes" }, { "number": 2, @@ -18552,7 +19092,8 @@ "load": 0, "destination": 378, "speed": 0, - "mass": 140.95 + "mass": 140.95, + "race": "Slimes" }, { "number": 2, @@ -18567,7 +19108,8 @@ "load": 0, "destination": 378, "speed": 0, - "mass": 49.5 + "mass": 49.5, + "race": "Slimes" }, { "number": 243, @@ -18582,7 +19124,8 @@ "load": 0, "destination": 378, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Slimes" }, { "number": 2, @@ -18597,7 +19140,8 @@ "load": 45.76, "destination": 295, "speed": 0, - "mass": 73.65 + "mass": 73.65, + "race": "Slimes" }, { "number": 1, @@ -18612,7 +19156,8 @@ "load": 0, "destination": 26, "speed": 0, - "mass": 42.1 + "mass": 42.1, + "race": "Slimes" }, { "number": 182, @@ -18627,7 +19172,8 @@ "load": 0, "destination": 73, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Slimes" }, { "number": 6, @@ -18642,7 +19188,8 @@ "load": 0, "destination": 378, "speed": 0, - "mass": 65.15 + "mass": 65.15, + "race": "Slimes" }, { "number": 71, @@ -18657,7 +19204,8 @@ "load": 0, "destination": 26, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Slimes" }, { "number": 12, @@ -18672,7 +19220,8 @@ "load": 0, "destination": 295, "speed": 0, - "mass": 7.5 + "mass": 7.5, + "race": "Slimes" }, { "number": 105, @@ -18687,7 +19236,8 @@ "load": 0, "destination": 378, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Slimes" }, { "number": 128, @@ -18702,7 +19252,8 @@ "load": 0, "destination": 295, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Slimes" }, { "number": 3, @@ -18717,7 +19268,8 @@ "load": 8.3, "destination": 73, "speed": 0, - "mass": 18.8 + "mass": 18.8, + "race": "Slimes" }, { "number": 2, @@ -18732,7 +19284,8 @@ "load": 0, "destination": 378, "speed": 0, - "mass": 141.84 + "mass": 141.84, + "race": "Slimes" }, { "number": 4, @@ -18747,7 +19300,8 @@ "load": 0, "destination": 73, "speed": 0, - "mass": 11.58 + "mass": 11.58, + "race": "Slimes" }, { "number": 4, @@ -18762,7 +19316,8 @@ "load": 0, "destination": 261, "speed": 0, - "mass": 11.58 + "mass": 11.58, + "race": "Slimes" }, { "number": 1, @@ -18777,7 +19332,8 @@ "load": 45.41, "destination": 528, "speed": 0, - "mass": 73.11 + "mass": 73.11, + "race": "Slimes" }, { "number": 1, @@ -18792,7 +19348,8 @@ "load": 0, "destination": 227, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Slimes" }, { "number": 1, @@ -18807,7 +19364,8 @@ "load": 0, "destination": 55, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Slimes" }, { "number": 1, @@ -18822,7 +19380,8 @@ "load": 0, "destination": 525, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Slimes" }, { "number": 1, @@ -18837,7 +19396,8 @@ "load": 0, "destination": 26, "speed": 0, - "mass": 141.84 + "mass": 141.84, + "race": "Slimes" }, { "number": 1, @@ -18852,7 +19412,8 @@ "load": 0, "destination": 664, "speed": 0, - "mass": 33 + "mass": 33, + "race": "Flagist" }, { "number": 1, @@ -18867,7 +19428,8 @@ "load": 0, "destination": 376, "speed": 0, - "mass": 49.47 + "mass": 49.47, + "race": "Flagist" }, { "number": 1, @@ -18882,7 +19444,8 @@ "load": 0, "destination": 646, "speed": 0, - "mass": 33 + "mass": 33, + "race": "Flagist" }, { "number": 4, @@ -18897,7 +19460,8 @@ "load": 0, "destination": 471, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -18912,7 +19476,8 @@ "load": 0, "destination": 664, "speed": 0, - "mass": 6 + "mass": 6, + "race": "Flagist" }, { "number": 1, @@ -18927,7 +19492,8 @@ "load": 0, "destination": 275, "speed": 0, - "mass": 6 + "mass": 6, + "race": "Flagist" }, { "number": 5, @@ -18942,7 +19508,8 @@ "load": 0, "destination": 275, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -18957,7 +19524,8 @@ "load": 0, "destination": 646, "speed": 0, - "mass": 6 + "mass": 6, + "race": "Flagist" }, { "number": 1, @@ -18972,7 +19540,8 @@ "load": 0, "destination": 694, "speed": 0, - "mass": 6 + "mass": 6, + "race": "Flagist" }, { "number": 5, @@ -18987,7 +19556,8 @@ "load": 0, "destination": 694, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19002,7 +19572,8 @@ "load": 0, "destination": 74, "speed": 0, - "mass": 6 + "mass": 6, + "race": "Flagist" }, { "number": 1, @@ -19017,7 +19588,8 @@ "load": 0, "destination": 661, "speed": 0, - "mass": 6 + "mass": 6, + "race": "Flagist" }, { "number": 1, @@ -19032,7 +19604,8 @@ "load": 0, "destination": 29, "speed": 0, - "mass": 6 + "mass": 6, + "race": "Flagist" }, { "number": 1, @@ -19047,7 +19620,8 @@ "load": 0, "destination": 201, "speed": 0, - "mass": 6 + "mass": 6, + "race": "Flagist" }, { "number": 3, @@ -19062,7 +19636,8 @@ "load": 0, "destination": 376, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 3, @@ -19077,7 +19652,8 @@ "load": 0, "destination": 661, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 3, @@ -19092,7 +19668,8 @@ "load": 0, "destination": 29, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 3, @@ -19107,7 +19684,8 @@ "load": 0, "destination": 201, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19122,7 +19700,8 @@ "load": 0, "destination": 436, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19137,7 +19716,8 @@ "load": 0, "destination": 569, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 8, @@ -19152,7 +19732,8 @@ "load": 0, "destination": 471, "speed": 0, - "mass": 6 + "mass": 6, + "race": "Flagist" }, { "number": 1, @@ -19167,7 +19748,8 @@ "load": 0, "destination": 646, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19182,7 +19764,8 @@ "load": 0, "destination": 25, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19197,7 +19780,8 @@ "load": 0, "destination": 377, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19212,7 +19796,8 @@ "load": 0, "destination": 438, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19227,7 +19812,8 @@ "load": 0, "destination": 27, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19242,7 +19828,8 @@ "load": 0, "destination": 130, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19257,7 +19844,8 @@ "load": 0, "destination": 116, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19272,7 +19860,8 @@ "load": 0, "destination": 409, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19287,7 +19876,8 @@ "load": 0, "destination": 305, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19302,7 +19892,8 @@ "load": 0, "destination": 624, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19317,7 +19908,8 @@ "load": 0, "destination": 340, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19332,7 +19924,8 @@ "load": 0, "destination": 434, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19347,7 +19940,8 @@ "load": 256.15, "destination": 436, "speed": 0, - "mass": 312.46 + "mass": 312.46, + "race": "Flagist" }, { "number": 1, @@ -19362,7 +19956,8 @@ "load": 0, "destination": 29, "speed": 0, - "mass": 49.5 + "mass": 49.5, + "race": "Flagist" }, { "number": 1, @@ -19377,7 +19972,8 @@ "load": 0, "destination": 538, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19392,7 +19988,8 @@ "load": 0, "destination": 698, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -19407,7 +20004,8 @@ "load": 0, "destination": 665, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -19422,7 +20020,8 @@ "load": 0, "destination": 253, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19437,7 +20036,8 @@ "load": 0, "destination": 108, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -19452,7 +20052,8 @@ "load": 0, "destination": 119, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -19467,7 +20068,8 @@ "load": 0, "destination": 366, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19482,7 +20084,8 @@ "load": 0, "destination": 222, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -19497,7 +20100,8 @@ "load": 0, "destination": 15, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -19512,7 +20116,8 @@ "load": 0, "destination": 72, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19527,7 +20132,8 @@ "load": 0, "destination": 251, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 195, @@ -19542,7 +20148,8 @@ "load": 0, "destination": 624, "speed": 0, - "mass": 2 + "mass": 2, + "race": "Flagist" }, { "number": 201, @@ -19557,7 +20164,8 @@ "load": 0, "destination": 624, "speed": 0, - "mass": 2 + "mass": 2, + "race": "Flagist" }, { "number": 1, @@ -19572,7 +20180,8 @@ "load": 0, "destination": 624, "speed": 0, - "mass": 355.43 + "mass": 355.43, + "race": "Flagist" }, { "number": 1, @@ -19587,7 +20196,8 @@ "load": 1, "destination": 624, "speed": 0, - "mass": 99.83 + "mass": 99.83, + "race": "Flagist" }, { "number": 1, @@ -19602,7 +20212,8 @@ "load": 0.9, "destination": 127, "speed": 0, - "mass": 178.52 + "mass": 178.52, + "race": "Flagist" }, { "number": 1, @@ -19617,7 +20228,8 @@ "load": 1, "destination": 624, "speed": 0, - "mass": 161.6 + "mass": 161.6, + "race": "Flagist" }, { "number": 1, @@ -19632,7 +20244,8 @@ "load": 1.05, "destination": 624, "speed": 0, - "mass": 99.88 + "mass": 99.88, + "race": "Flagist" }, { "number": 1, @@ -19647,7 +20260,8 @@ "load": 0.95, "destination": 624, "speed": 0, - "mass": 178.56 + "mass": 178.56, + "race": "Flagist" }, { "number": 88, @@ -19662,7 +20276,8 @@ "load": 0, "destination": 624, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19677,7 +20292,8 @@ "load": 0, "destination": 632, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19692,7 +20308,8 @@ "load": 67.08, "destination": 305, "speed": 0, - "mass": 154.83 + "mass": 154.83, + "race": "Flagist" }, { "number": 1, @@ -19707,7 +20324,8 @@ "load": 0, "destination": 664, "speed": 0, - "mass": 149.41 + "mass": 149.41, + "race": "Flagist" }, { "number": 48, @@ -19722,7 +20340,8 @@ "load": 0, "destination": 127, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19737,7 +20356,8 @@ "load": 56.87, "destination": 305, "speed": 0, - "mass": 107.46 + "mass": 107.46, + "race": "Flagist" }, { "number": 1, @@ -19752,7 +20372,8 @@ "load": 82.47, "destination": 409, "speed": 0, - "mass": 149.03 + "mass": 149.03, + "race": "Flagist" }, { "number": 1, @@ -19767,7 +20388,8 @@ "load": 0, "destination": 436, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 91, @@ -19782,7 +20404,8 @@ "load": 0, "destination": 624, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19797,7 +20420,8 @@ "load": 0, "destination": 12, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 8, @@ -19812,7 +20436,8 @@ "load": 1.26, "destination": 74, "speed": 0, - "mass": 6.05 + "mass": 6.05, + "race": "Flagist" }, { "number": 1, @@ -19827,7 +20452,8 @@ "load": 0, "destination": 305, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19842,7 +20468,8 @@ "load": 0, "destination": 340, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19857,7 +20484,8 @@ "load": 0, "destination": 436, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19872,7 +20500,8 @@ "load": 0, "destination": 624, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19887,7 +20516,8 @@ "load": 0, "destination": 298, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19902,7 +20532,8 @@ "load": 0, "destination": 532, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19917,7 +20548,8 @@ "load": 0, "destination": 507, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19932,7 +20564,8 @@ "load": 0, "destination": 669, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19947,7 +20580,8 @@ "load": 0, "destination": 20, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19962,7 +20596,8 @@ "load": 0, "destination": 641, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -19977,7 +20612,8 @@ "load": 1, "destination": 377, "speed": 0, - "mass": 5.83 + "mass": 5.83, + "race": "Flagist" }, { "number": 1, @@ -19992,7 +20628,8 @@ "load": 1, "destination": 27, "speed": 0, - "mass": 5.83 + "mass": 5.83, + "race": "Flagist" }, { "number": 1, @@ -20007,7 +20644,8 @@ "load": 0.9, "destination": 134, "speed": 0, - "mass": 5.75 + "mass": 5.75, + "race": "Flagist" }, { "number": 1, @@ -20022,7 +20660,8 @@ "load": 1, "destination": 251, "speed": 0, - "mass": 5.83 + "mass": 5.83, + "race": "Flagist" }, { "number": 1, @@ -20037,7 +20676,8 @@ "load": 1, "destination": 15, "speed": 0, - "mass": 5.83 + "mass": 5.83, + "race": "Flagist" }, { "number": 1, @@ -20052,7 +20692,8 @@ "load": 1, "destination": 72, "speed": 0, - "mass": 5.83 + "mass": 5.83, + "race": "Flagist" }, { "number": 51, @@ -20067,7 +20708,8 @@ "load": 0, "destination": 624, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 201, @@ -20082,7 +20724,8 @@ "load": 0, "destination": 624, "speed": 0, - "mass": 2 + "mass": 2, + "race": "Flagist" }, { "number": 1, @@ -20097,7 +20740,8 @@ "load": 0, "destination": 222, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20112,7 +20756,8 @@ "load": 0, "destination": 305, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20127,7 +20772,8 @@ "load": 0, "destination": 340, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20142,7 +20788,8 @@ "load": 0, "destination": 409, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20157,7 +20804,8 @@ "load": 0, "destination": 434, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20172,7 +20820,8 @@ "load": 0, "destination": 624, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20187,7 +20836,8 @@ "load": 0, "destination": 647, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20202,7 +20852,8 @@ "load": 0, "destination": 79, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20217,7 +20868,8 @@ "load": 0, "destination": 27, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20232,7 +20884,8 @@ "load": 0, "destination": 222, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20247,7 +20900,8 @@ "load": 0, "destination": 305, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20262,7 +20916,8 @@ "load": 0, "destination": 340, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20277,7 +20932,8 @@ "load": 0, "destination": 377, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20292,7 +20948,8 @@ "load": 0, "destination": 409, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20307,7 +20964,8 @@ "load": 0, "destination": 434, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20322,7 +20980,8 @@ "load": 0, "destination": 438, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20337,7 +20996,8 @@ "load": 0, "destination": 569, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20352,7 +21012,8 @@ "load": 0, "destination": 624, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20367,7 +21028,8 @@ "load": 0, "destination": 665, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20382,7 +21044,8 @@ "load": 0, "destination": 649, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20397,7 +21060,8 @@ "load": 0, "destination": 403, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20412,7 +21076,8 @@ "load": 0, "destination": 332, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20427,7 +21092,8 @@ "load": 0, "destination": 446, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -20442,7 +21108,8 @@ "load": 0, "destination": 15, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 4, @@ -20457,7 +21124,8 @@ "load": 0, "destination": 27, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -20472,7 +21140,8 @@ "load": 0, "destination": 72, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 15, @@ -20487,7 +21156,8 @@ "load": 0, "destination": 222, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -20502,7 +21172,8 @@ "load": 0, "destination": 251, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 4, @@ -20517,7 +21188,8 @@ "load": 0, "destination": 305, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 4, @@ -20532,7 +21204,8 @@ "load": 0, "destination": 340, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 4, @@ -20547,7 +21220,8 @@ "load": 0, "destination": 377, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 4, @@ -20562,7 +21236,8 @@ "load": 0, "destination": 409, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 4, @@ -20577,7 +21252,8 @@ "load": 0, "destination": 434, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -20592,7 +21268,8 @@ "load": 0, "destination": 569, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 4, @@ -20607,7 +21284,8 @@ "load": 0, "destination": 624, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 4, @@ -20622,7 +21300,8 @@ "load": 0, "destination": 665, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20637,7 +21316,8 @@ "load": 0, "destination": 535, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20652,7 +21332,8 @@ "load": 0, "destination": 55, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20667,7 +21348,8 @@ "load": 0, "destination": 525, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20682,7 +21364,8 @@ "load": 0, "destination": 173, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20697,7 +21380,8 @@ "load": 0, "destination": 500, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20712,7 +21396,8 @@ "load": 0, "destination": 134, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20727,7 +21412,8 @@ "load": 0, "destination": 489, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20742,7 +21428,8 @@ "load": 0, "destination": 343, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20757,7 +21444,8 @@ "load": 0, "destination": 458, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20772,7 +21460,8 @@ "load": 0, "destination": 177, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20787,7 +21476,8 @@ "load": 0, "destination": 523, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20802,7 +21492,8 @@ "load": 0, "destination": 572, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20817,7 +21508,8 @@ "load": 0, "destination": 622, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20832,7 +21524,8 @@ "load": 0, "destination": 558, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20847,7 +21540,8 @@ "load": 0, "destination": 461, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20862,7 +21556,8 @@ "load": 0, "destination": 685, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20877,7 +21572,8 @@ "load": 0, "destination": 636, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20892,7 +21588,8 @@ "load": 0, "destination": 46, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20907,7 +21604,8 @@ "load": 0, "destination": 506, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -20922,7 +21620,8 @@ "load": 0, "destination": 15, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -20937,7 +21636,8 @@ "load": 0, "destination": 72, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -20952,7 +21652,8 @@ "load": 0, "destination": 127, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 2, @@ -20967,7 +21668,8 @@ "load": 0, "destination": 251, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20982,7 +21684,8 @@ "load": 0, "destination": 227, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Flagist" }, { "number": 1, @@ -20997,7 +21700,8 @@ "load": 0, "destination": 95, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Manya" }, { "number": 1, @@ -21012,7 +21716,8 @@ "load": 0, "destination": 396, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Manya" }, { "number": 1, @@ -21027,7 +21732,8 @@ "load": 0, "destination": 203, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Manya" }, { "number": 1, @@ -21042,7 +21748,8 @@ "load": 0, "destination": 673, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Manya" }, { "number": 1, @@ -21057,7 +21764,8 @@ "load": 0, "destination": 663, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Manya" }, { "number": 1, @@ -21072,7 +21780,8 @@ "load": 0, "destination": 56, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Manya" }, { "number": 1, @@ -21087,7 +21796,8 @@ "load": 0, "destination": 314, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Manya" }, { "number": 1, @@ -21102,7 +21812,8 @@ "load": 0, "destination": 207, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Manya" }, { "number": 1, @@ -21117,7 +21828,8 @@ "load": 0, "destination": 459, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Manya" }, { "number": 1, @@ -21132,7 +21844,8 @@ "load": 0, "destination": 196, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Manya" }, { "number": 1, @@ -21147,7 +21860,8 @@ "load": 0, "destination": 225, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Manya" }, { "number": 1, @@ -21162,7 +21876,8 @@ "load": 0, "destination": 24, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Manya" }, { "number": 1, @@ -21177,7 +21892,8 @@ "load": 0, "destination": 48, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Manya" }, { "number": 1, @@ -21192,7 +21908,8 @@ "load": 0, "destination": 344, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Manya" }, { "number": 1, @@ -21207,7 +21924,8 @@ "load": 0, "destination": 530, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Manya" }, { "number": 1, @@ -21222,7 +21940,8 @@ "load": 0, "destination": 2, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bupyc" }, { "number": 1, @@ -21237,7 +21956,8 @@ "load": 0, "destination": 391, "speed": 0, - "mass": 2 + "mass": 2, + "race": "Bupyc" }, { "number": 1, @@ -21252,7 +21972,8 @@ "load": 0, "destination": 90, "speed": 0, - "mass": 2 + "mass": 2, + "race": "Bupyc" }, { "number": 1, @@ -21267,7 +21988,8 @@ "load": 0, "destination": 2, "speed": 0, - "mass": 2 + "mass": 2, + "race": "Bupyc" }, { "number": 19, @@ -21282,7 +22004,8 @@ "load": 0, "destination": 2, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Bupyc" }, { "number": 1, @@ -21297,7 +22020,8 @@ "load": 0, "destination": 664, "speed": 0, - "mass": 1 + "mass": 1, + "race": "CosmicMonkeys" }, { "number": 1, @@ -21312,7 +22036,8 @@ "load": 0, "destination": 698, "speed": 0, - "mass": 1 + "mass": 1, + "race": "CosmicMonkeys" }, { "number": 1, @@ -21327,7 +22052,8 @@ "load": 0, "destination": 201, "speed": 0, - "mass": 1 + "mass": 1, + "race": "CosmicMonkeys" }, { "number": 1, @@ -21342,7 +22068,8 @@ "load": 0, "destination": 661, "speed": 0, - "mass": 1 + "mass": 1, + "race": "CosmicMonkeys" }, { "number": 1, @@ -21357,7 +22084,8 @@ "load": 0, "destination": 471, "speed": 0, - "mass": 1 + "mass": 1, + "race": "CosmicMonkeys" }, { "number": 1, @@ -21372,7 +22100,8 @@ "load": 0, "destination": 275, "speed": 0, - "mass": 1 + "mass": 1, + "race": "CosmicMonkeys" }, { "number": 1, @@ -21387,7 +22116,8 @@ "load": 0, "destination": 29, "speed": 0, - "mass": 1 + "mass": 1, + "race": "CosmicMonkeys" }, { "number": 1, @@ -21402,7 +22132,8 @@ "load": 0, "destination": 376, "speed": 0, - "mass": 1 + "mass": 1, + "race": "CosmicMonkeys" }, { "number": 1, @@ -21417,7 +22148,8 @@ "load": 0, "destination": 74, "speed": 0, - "mass": 1 + "mass": 1, + "race": "CosmicMonkeys" }, { "number": 1, @@ -21432,7 +22164,8 @@ "load": 0, "destination": 28, "speed": 0, - "mass": 1 + "mass": 1, + "race": "CosmicMonkeys" }, { "number": 1, @@ -21447,7 +22180,8 @@ "load": 0, "destination": 45, "speed": 0, - "mass": 1 + "mass": 1, + "race": "CosmicMonkeys" }, { "number": 1, @@ -21462,7 +22196,8 @@ "load": 0, "destination": 538, "speed": 0, - "mass": 1 + "mass": 1, + "race": "CosmicMonkeys" }, { "number": 1, @@ -21477,7 +22212,8 @@ "load": 0, "destination": 698, "speed": 0, - "mass": 1 + "mass": 1, + "race": "CosmicMonkeys" }, { "number": 1, @@ -21492,7 +22228,8 @@ "load": 0.5, "destination": 504, "speed": 0, - "mass": 17 + "mass": 17, + "race": "Koreans" }, { "number": 1, @@ -21507,7 +22244,8 @@ "load": 19, "destination": 504, "speed": 0, - "mass": 117.96 + "mass": 117.96, + "race": "Koreans" }, { "number": 1, @@ -21522,7 +22260,8 @@ "load": 10, "destination": 421, "speed": 0, - "mass": 59.46 + "mass": 59.46, + "race": "Koreans" }, { "number": 1, @@ -21537,7 +22276,8 @@ "load": 0, "destination": 421, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -21552,7 +22292,8 @@ "load": 66.01, "destination": 421, "speed": 0, - "mass": 165.01 + "mass": 165.01, + "race": "Koreans" }, { "number": 1, @@ -21567,7 +22308,8 @@ "load": 0, "destination": 206, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -21582,7 +22324,8 @@ "load": 0, "destination": 111, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -21597,7 +22340,8 @@ "load": 0, "destination": 552, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -21612,7 +22356,8 @@ "load": 0, "destination": 549, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -21627,7 +22372,8 @@ "load": 0, "destination": 141, "speed": 0, - "mass": 98.91 + "mass": 98.91, + "race": "Koreans" }, { "number": 1, @@ -21642,7 +22388,8 @@ "load": 0, "destination": 141, "speed": 0, - "mass": 49.43 + "mass": 49.43, + "race": "Koreans" }, { "number": 1, @@ -21657,7 +22404,8 @@ "load": 0, "destination": 190, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -21672,7 +22420,8 @@ "load": 0, "destination": 431, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -21687,7 +22436,8 @@ "load": 0, "destination": 183, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -21702,7 +22452,8 @@ "load": 0, "destination": 447, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -21717,7 +22468,8 @@ "load": 0, "destination": 679, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -21732,7 +22484,8 @@ "load": 16.88, "destination": 421, "speed": 0, - "mass": 90.48 + "mass": 90.48, + "race": "Koreans" }, { "number": 1, @@ -21747,7 +22500,8 @@ "load": 0, "destination": 693, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -21762,7 +22516,8 @@ "load": 0, "destination": 87, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -21777,7 +22532,8 @@ "load": 0, "destination": 369, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -21792,7 +22548,8 @@ "load": 0, "destination": 223, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -21807,7 +22564,8 @@ "load": 71.64, "destination": 504, "speed": 0, - "mass": 170.64 + "mass": 170.64, + "race": "Koreans" }, { "number": 1, @@ -21822,7 +22580,8 @@ "load": 0, "destination": 231, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 3, @@ -21837,7 +22596,8 @@ "load": 0, "destination": 612, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 3, @@ -21852,7 +22612,8 @@ "load": 0, "destination": 697, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -21867,7 +22628,8 @@ "load": 0, "destination": 612, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -21882,7 +22644,8 @@ "load": 0, "destination": 697, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 16, @@ -21897,7 +22660,8 @@ "load": 0, "destination": 612, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -21912,7 +22676,8 @@ "load": 0, "destination": 697, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 2, @@ -21927,7 +22692,8 @@ "load": 0, "destination": 504, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 2, @@ -21942,7 +22708,8 @@ "load": 0, "destination": 45, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 18, @@ -21957,7 +22724,8 @@ "load": 0, "destination": 141, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -21972,7 +22740,8 @@ "load": 0, "destination": 243, "speed": 0, - "mass": 58.36 + "mass": 58.36, + "race": "Koreans" }, { "number": 1, @@ -21987,7 +22756,8 @@ "load": 0, "destination": 141, "speed": 0, - "mass": 70.58 + "mass": 70.58, + "race": "Koreans" }, { "number": 7, @@ -22002,7 +22772,8 @@ "load": 0, "destination": 9, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -22017,7 +22788,8 @@ "load": 0, "destination": 421, "speed": 0, - "mass": 65.09 + "mass": 65.09, + "race": "Koreans" }, { "number": 1, @@ -22032,7 +22804,8 @@ "load": 0, "destination": 268, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -22047,7 +22820,8 @@ "load": 0, "destination": 495, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -22062,7 +22836,8 @@ "load": 0, "destination": 243, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 4, @@ -22077,7 +22852,8 @@ "load": 0, "destination": 45, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 4, @@ -22092,7 +22868,8 @@ "load": 0, "destination": 519, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -22107,7 +22884,8 @@ "load": 0, "destination": 338, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -22122,7 +22900,8 @@ "load": 0, "destination": 282, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -22137,7 +22916,8 @@ "load": 0, "destination": 183, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -22152,7 +22932,8 @@ "load": 0, "destination": 654, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -22167,7 +22948,8 @@ "load": 0, "destination": 612, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -22182,7 +22964,8 @@ "load": 0, "destination": 191, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -22197,7 +22980,8 @@ "load": 0, "destination": 549, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -22212,7 +22996,8 @@ "load": 0, "destination": 602, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -22227,7 +23012,8 @@ "load": 0, "destination": 141, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -22242,7 +23028,8 @@ "load": 0, "destination": 421, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 2, @@ -22257,7 +23044,8 @@ "load": 0, "destination": 49, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -22272,7 +23060,8 @@ "load": 0, "destination": 111, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 3, @@ -22287,7 +23076,8 @@ "load": 0, "destination": 183, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 3, @@ -22302,7 +23092,8 @@ "load": 0, "destination": 190, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -22317,7 +23108,8 @@ "load": 0, "destination": 206, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 3, @@ -22332,7 +23124,8 @@ "load": 0, "destination": 474, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 3, @@ -22347,7 +23140,8 @@ "load": 0, "destination": 559, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -22362,7 +23156,8 @@ "load": 0, "destination": 176, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 2, @@ -22377,7 +23172,8 @@ "load": 0, "destination": 111, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -22392,7 +23188,8 @@ "load": 0, "destination": 17, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -22407,7 +23204,8 @@ "load": 0, "destination": 421, "speed": 0, - "mass": 70.32 + "mass": 70.32, + "race": "Koreans" }, { "number": 1, @@ -22422,7 +23220,8 @@ "load": 0, "destination": 292, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 6, @@ -22437,7 +23236,8 @@ "load": 0, "destination": 191, "speed": 0, - "mass": 12.5 + "mass": 12.5, + "race": "Koreans" }, { "number": 1, @@ -22452,7 +23252,8 @@ "load": 0, "destination": 206, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -22467,7 +23268,8 @@ "load": 0, "destination": 292, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -22482,7 +23284,8 @@ "load": 0, "destination": 369, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -22497,7 +23300,8 @@ "load": 0, "destination": 394, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 70, @@ -22512,7 +23316,8 @@ "load": 0, "destination": 421, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 15, @@ -22527,7 +23332,8 @@ "load": 0, "destination": 549, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 28, @@ -22542,7 +23348,8 @@ "load": 0, "destination": 552, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 13, @@ -22557,7 +23364,8 @@ "load": 0, "destination": 602, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 40, @@ -22572,7 +23380,8 @@ "load": 0, "destination": 612, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -22587,7 +23396,8 @@ "load": 0, "destination": 635, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -22602,7 +23412,8 @@ "load": 0, "destination": 654, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -22617,7 +23428,8 @@ "load": 0, "destination": 693, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 16, @@ -22632,7 +23444,8 @@ "load": 0, "destination": 697, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Koreans" }, { "number": 1, @@ -22647,7 +23460,8 @@ "load": 0, "destination": 663, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 1, @@ -22662,7 +23476,8 @@ "load": 0, "destination": 85, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 1, @@ -22677,7 +23492,8 @@ "load": 0, "destination": 73, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 1, @@ -22692,7 +23508,8 @@ "load": 0, "destination": 378, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 1, @@ -22707,7 +23524,8 @@ "load": 0, "destination": 358, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 1, @@ -22722,7 +23540,8 @@ "load": 0, "destination": 26, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 1, @@ -22737,7 +23556,8 @@ "load": 0, "destination": 261, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 1, @@ -22752,7 +23572,8 @@ "load": 0, "destination": 690, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 1, @@ -22767,7 +23588,8 @@ "load": 0, "destination": 203, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 1, @@ -22782,7 +23604,8 @@ "load": 0, "destination": 528, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 1, @@ -22797,7 +23620,8 @@ "load": 0, "destination": 530, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 1, @@ -22812,7 +23636,8 @@ "load": 0, "destination": 56, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 1, @@ -22827,7 +23652,8 @@ "load": 0, "destination": 196, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 1, @@ -22842,7 +23668,8 @@ "load": 0, "destination": 459, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 1, @@ -22857,7 +23684,8 @@ "load": 0, "destination": 314, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Barcarols" }, { "number": 1, @@ -22872,7 +23700,8 @@ "load": 0, "destination": 421, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Onix" }, { "number": 1, @@ -22887,7 +23716,8 @@ "load": 0, "destination": 28, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Onix" }, { "number": 1, @@ -22902,7 +23732,8 @@ "load": 0, "destination": 612, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Onix" }, { "number": 1, @@ -22917,7 +23748,8 @@ "load": 0, "destination": 45, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Onix" }, { "number": 1, @@ -22932,7 +23764,8 @@ "load": 0, "destination": 504, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Onix" }, { "number": 1, @@ -22947,7 +23780,8 @@ "load": 0, "destination": 552, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Onix" }, { "number": 1, @@ -22962,7 +23796,8 @@ "load": 0, "destination": 602, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Onix" }, { "number": 1, @@ -22977,7 +23812,8 @@ "load": 0, "destination": 697, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Onix" }, { "number": 1, @@ -22992,7 +23828,8 @@ "load": 0, "destination": 549, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Onix" }, { "number": 1, @@ -23007,7 +23844,8 @@ "load": 0, "destination": 191, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Onix" }, { "number": 1, @@ -23022,7 +23860,8 @@ "load": 0, "destination": 431, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Onix" }, { "number": 1, @@ -23037,7 +23876,8 @@ "load": 0, "destination": 114, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -23052,7 +23892,8 @@ "load": 0, "destination": 296, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -23067,7 +23908,8 @@ "load": 0, "destination": 447, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -23082,7 +23924,8 @@ "load": 0, "destination": 176, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -23097,7 +23940,8 @@ "load": 0, "destination": 282, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -23112,7 +23956,8 @@ "load": 0, "destination": 223, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -23127,7 +23972,8 @@ "load": 0, "destination": 17, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -23142,7 +23988,8 @@ "load": 0, "destination": 495, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -23157,7 +24004,8 @@ "load": 0, "destination": 87, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -23172,7 +24020,8 @@ "load": 0, "destination": 338, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -23187,7 +24036,8 @@ "load": 0, "destination": 38, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -23202,7 +24052,8 @@ "load": 0, "destination": 177, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -23217,7 +24068,8 @@ "load": 0, "destination": 523, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -23232,7 +24084,8 @@ "load": 0, "destination": 679, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -23247,7 +24100,8 @@ "load": 0, "destination": 572, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -23262,7 +24116,8 @@ "load": 0, "destination": 461, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -23277,7 +24132,8 @@ "load": 0, "destination": 458, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -23292,7 +24148,8 @@ "load": 0, "destination": 622, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 44, @@ -23307,7 +24164,8 @@ "load": 0, "destination": 370, "speed": 0, - "mass": 2.08 + "mass": 2.08, + "race": "SSSan" }, { "number": 1, @@ -23322,7 +24180,8 @@ "load": 0, "destination": 370, "speed": 0, - "mass": 88.71 + "mass": 88.71, + "race": "SSSan" }, { "number": 5, @@ -23337,7 +24196,8 @@ "load": 0, "destination": 370, "speed": 0, - "mass": 2 + "mass": 2, + "race": "SSSan" }, { "number": 1, @@ -23352,7 +24212,8 @@ "load": 0, "destination": 558, "speed": 0, - "mass": 1 + "mass": 1, + "race": "SSSan" }, { "number": 1, @@ -23367,7 +24228,8 @@ "load": 0, "destination": 370, "speed": 0, - "mass": 196.25 + "mass": 196.25, + "race": "SSSan" }, { "number": 1, @@ -23382,7 +24244,8 @@ "load": 0, "destination": 432, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Shuriki" }, { "number": 1, @@ -23397,7 +24260,8 @@ "load": 0, "destination": 641, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Shuriki" }, { "number": 1, @@ -23412,7 +24276,8 @@ "load": 0, "destination": 682, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Civilians" }, { "number": 1, @@ -23427,7 +24292,8 @@ "load": 0, "destination": 95, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Civilians" }, { "number": 1, @@ -23442,7 +24308,8 @@ "load": 0, "destination": 95, "speed": 0, - "mass": 1 + "mass": 1, + "race": "AT-2560TX" }, { "number": 1, @@ -23457,7 +24324,8 @@ "load": 0, "destination": 449, "speed": 0, - "mass": 1 + "mass": 1, + "race": "AT-2560TX" }, { "number": 1, @@ -23472,7 +24340,8 @@ "load": 0, "destination": 682, "speed": 0, - "mass": 1 + "mass": 1, + "race": "AT-2560TX" }, { "number": 1, @@ -23487,7 +24356,8 @@ "load": 0, "destination": 587, "speed": 0, - "mass": 1 + "mass": 1, + "race": "AT-2560TX" }, { "number": 1, @@ -23502,7 +24372,8 @@ "load": 0, "destination": 421, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Acreators" }, { "number": 1, @@ -23517,7 +24388,8 @@ "load": 0, "destination": 28, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Acreators" }, { "number": 1, @@ -23532,7 +24404,8 @@ "load": 0, "destination": 45, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Acreators" }, { "number": 1, @@ -23547,7 +24420,8 @@ "load": 0, "destination": 612, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Acreators" }, { "number": 1, @@ -23562,7 +24436,8 @@ "load": 0, "destination": 141, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Acreators" }, { "number": 1, @@ -23577,7 +24452,8 @@ "load": 0, "destination": 243, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Acreators" }, { "number": 1, @@ -23592,7 +24468,8 @@ "load": 0, "destination": 697, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Acreators" }, { "number": 1, @@ -23607,7 +24484,8 @@ "load": 0, "destination": 602, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Acreators" }, { "number": 1, @@ -23622,7 +24500,8 @@ "load": 0, "destination": 552, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Acreators" }, { "number": 1, @@ -23637,7 +24516,8 @@ "load": 0, "destination": 504, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Acreators" }, { "number": 1, @@ -23652,7 +24532,8 @@ "load": 0, "destination": 549, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Acreators" }, { "number": 1, @@ -23667,7 +24548,8 @@ "load": 0, "destination": 191, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Acreators" }, { "number": 1, @@ -23682,7 +24564,8 @@ "load": 0.08, "destination": 370, "speed": 0, - "mass": 6.26 + "mass": 6.26, + "race": "BlackCrows" }, { "number": 1, @@ -23697,7 +24580,8 @@ "load": 0, "destination": 369, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -23712,7 +24596,8 @@ "load": 0, "destination": 635, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -23727,7 +24612,8 @@ "load": 0, "destination": 559, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -23742,7 +24628,8 @@ "load": 0, "destination": 596, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -23757,7 +24644,8 @@ "load": 0, "destination": 549, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -23772,7 +24660,8 @@ "load": 0, "destination": 370, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -23787,7 +24676,8 @@ "load": 0, "destination": 421, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -23802,7 +24692,8 @@ "load": 0, "destination": 111, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -23817,7 +24708,8 @@ "load": 0, "destination": 206, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -23832,7 +24724,8 @@ "load": 0, "destination": 190, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -23847,7 +24740,8 @@ "load": 0, "destination": 183, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -23862,7 +24756,8 @@ "load": 0, "destination": 28, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -23877,7 +24772,8 @@ "load": 0, "destination": 693, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -23892,7 +24788,8 @@ "load": 0, "destination": 431, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -23907,7 +24804,8 @@ "load": 0, "destination": 231, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -23922,7 +24820,8 @@ "load": 0, "destination": 394, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -23937,7 +24836,8 @@ "load": 0, "destination": 654, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -23952,7 +24852,8 @@ "load": 0, "destination": 292, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -23967,7 +24868,8 @@ "load": 0, "destination": 612, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -23982,7 +24884,8 @@ "load": 0, "destination": 432, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -23997,7 +24900,8 @@ "load": 0, "destination": 513, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -24012,7 +24916,8 @@ "load": 0, "destination": 141, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -24027,7 +24932,8 @@ "load": 0, "destination": 519, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -24042,7 +24948,8 @@ "load": 0, "destination": 552, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -24057,7 +24964,8 @@ "load": 0, "destination": 268, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -24072,7 +24980,8 @@ "load": 0, "destination": 697, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -24087,7 +24996,8 @@ "load": 0, "destination": 9, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -24102,7 +25012,8 @@ "load": 0, "destination": 243, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -24117,7 +25028,8 @@ "load": 0, "destination": 191, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -24132,7 +25044,8 @@ "load": 0, "destination": 474, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -24147,7 +25060,8 @@ "load": 0, "destination": 45, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -24162,7 +25076,8 @@ "load": 0, "destination": 504, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -24177,7 +25092,8 @@ "load": 0, "destination": 49, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 1, @@ -24192,7 +25108,8 @@ "load": 0, "destination": 602, "speed": 0, - "mass": 1 + "mass": 1, + "race": "BlackCrows" }, { "number": 28, @@ -24207,7 +25124,8 @@ "load": 0, "destination": 225, "speed": 0, - "mass": 2.4 + "mass": 2.4, + "race": "Nails" }, { "number": 8, @@ -24222,7 +25140,8 @@ "load": 2.81, "destination": 425, "speed": 0, - "mass": 6.31 + "mass": 6.31, + "race": "Nails" }, { "number": 1, @@ -24237,7 +25156,8 @@ "load": 0, "destination": 314, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -24252,7 +25172,8 @@ "load": 0, "destination": 79, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -24267,7 +25188,8 @@ "load": 0, "destination": 196, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -24282,7 +25204,8 @@ "load": 0, "destination": 207, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -24297,7 +25220,8 @@ "load": 0, "destination": 56, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -24312,7 +25236,8 @@ "load": 0, "destination": 690, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -24327,7 +25252,8 @@ "load": 0, "destination": 663, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -24342,7 +25268,8 @@ "load": 0, "destination": 85, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -24357,7 +25284,8 @@ "load": 0, "destination": 459, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -24372,7 +25300,8 @@ "load": 0, "destination": 12, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -24387,7 +25316,8 @@ "load": 0, "destination": 366, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -24402,7 +25332,8 @@ "load": 0, "destination": 691, "speed": 0, - "mass": 14.08 + "mass": 14.08, + "race": "Nails" }, { "number": 1, @@ -24417,7 +25348,8 @@ "load": 0, "destination": 425, "speed": 0, - "mass": 66.5 + "mass": 66.5, + "race": "Nails" }, { "number": 5, @@ -24432,7 +25364,8 @@ "load": 0, "destination": 425, "speed": 0, - "mass": 2 + "mass": 2, + "race": "Nails" }, { "number": 25, @@ -24447,7 +25380,8 @@ "load": 0, "destination": 97, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -24462,7 +25396,8 @@ "load": 1.05, "destination": 97, "speed": 0, - "mass": 67.61 + "mass": 67.61, + "race": "Nails" }, { "number": 1, @@ -24477,7 +25412,8 @@ "load": 0, "destination": 587, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -24492,7 +25428,8 @@ "load": 0, "destination": 530, "speed": 0, - "mass": 2.6 + "mass": 2.6, + "race": "Nails" }, { "number": 1, @@ -24507,7 +25444,8 @@ "load": 0, "destination": 69, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -24522,7 +25460,8 @@ "load": 0, "destination": 24, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -24537,7 +25476,8 @@ "load": 0, "destination": 296, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -24552,7 +25492,8 @@ "load": 0, "destination": 32, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -24567,7 +25508,8 @@ "load": 0, "destination": 682, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -24582,7 +25524,8 @@ "load": 0, "destination": 430, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -24597,7 +25540,8 @@ "load": 0, "destination": 449, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 25, @@ -24612,7 +25556,8 @@ "load": 0, "destination": 48, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 3, @@ -24627,7 +25572,8 @@ "load": 0, "destination": 203, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 9, @@ -24642,7 +25588,8 @@ "load": 0, "destination": 225, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 15, @@ -24657,7 +25604,8 @@ "load": 0, "destination": 344, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -24672,7 +25620,8 @@ "load": 0, "destination": 396, "speed": 0, - "mass": 48.9 + "mass": 48.9, + "race": "Nails" }, { "number": 1, @@ -24687,7 +25636,8 @@ "load": 0, "destination": 425, "speed": 0, - "mass": 42.52 + "mass": 42.52, + "race": "Nails" }, { "number": 13, @@ -24702,7 +25652,8 @@ "load": 0, "destination": 530, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 26, @@ -24717,7 +25668,8 @@ "load": 0, "destination": 673, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Nails" }, { "number": 1, @@ -24732,7 +25684,8 @@ "load": 0, "destination": 358, "speed": 0, - "mass": 1 + "mass": 1, + "race": "kenguri" }, { "number": 1, @@ -24747,7 +25700,8 @@ "load": 0, "destination": 593, "speed": 0, - "mass": 1 + "mass": 1, + "race": "kenguri" }, { "number": 1, @@ -24762,7 +25716,8 @@ "load": 0, "destination": 599, "speed": 0, - "mass": 1 + "mass": 1, + "race": "kenguri" }, { "number": 1, @@ -24777,7 +25732,8 @@ "load": 0, "destination": 585, "speed": 0, - "mass": 1 + "mass": 1, + "race": "kenguri" }, { "number": 1, @@ -24792,7 +25748,8 @@ "load": 0, "destination": 410, "speed": 0, - "mass": 1 + "mass": 1, + "race": "kenguri" }, { "number": 1, @@ -24807,7 +25764,8 @@ "load": 0, "destination": 654, "speed": 0, - "mass": 1 + "mass": 1, + "race": "AbubaGerbographerPot" }, { "number": 1, @@ -24822,7 +25780,8 @@ "load": 0, "destination": 95, "speed": 0, - "mass": 1 + "mass": 1, + "race": "6PATBA" }, { "number": 1, @@ -24837,7 +25796,8 @@ "load": 0, "destination": 449, "speed": 0, - "mass": 1 + "mass": 1, + "race": "6PATBA" }, { "number": 1, @@ -24852,7 +25812,8 @@ "load": 0, "destination": 29, "speed": 0, - "mass": 1 + "mass": 1, + "race": "6PATBA" }, { "number": 1, @@ -24867,7 +25828,8 @@ "load": 0, "destination": 538, "speed": 0, - "mass": 1 + "mass": 1, + "race": "6PATBA" }, { "number": 1, @@ -24882,7 +25844,8 @@ "load": 0, "destination": 661, "speed": 0, - "mass": 1 + "mass": 1, + "race": "6PATBA" }, { "number": 1, @@ -24897,7 +25860,8 @@ "load": 0, "destination": 646, "speed": 0, - "mass": 1 + "mass": 1, + "race": "6PATBA" }, { "number": 1, @@ -24912,7 +25876,8 @@ "load": 0, "destination": 201, "speed": 0, - "mass": 1 + "mass": 1, + "race": "6PATBA" }, { "number": 1, @@ -24927,7 +25892,8 @@ "load": 0, "destination": 698, "speed": 0, - "mass": 1 + "mass": 1, + "race": "6PATBA" }, { "number": 1, @@ -24942,7 +25908,8 @@ "load": 0, "destination": 664, "speed": 0, - "mass": 1 + "mass": 1, + "race": "6PATBA" }, { "number": 1, @@ -24957,7 +25924,8 @@ "load": 0, "destination": 471, "speed": 0, - "mass": 1 + "mass": 1, + "race": "6PATBA" }, { "number": 1, @@ -24972,7 +25940,8 @@ "load": 0, "destination": 74, "speed": 0, - "mass": 1 + "mass": 1, + "race": "6PATBA" }, { "number": 1, @@ -24987,7 +25956,8 @@ "load": 0, "destination": 275, "speed": 0, - "mass": 1 + "mass": 1, + "race": "6PATBA" }, { "number": 1, @@ -25002,7 +25972,8 @@ "load": 0, "destination": 694, "speed": 0, - "mass": 1 + "mass": 1, + "race": "6PATBA" }, { "number": 1, @@ -25017,7 +25988,8 @@ "load": 0, "destination": 376, "speed": 0, - "mass": 1 + "mass": 1, + "race": "6PATBA" }, { "number": 1, @@ -25032,7 +26004,8 @@ "load": 20, "destination": 641, "speed": 0, - "mass": 69.5 + "mass": 69.5, + "race": "Ricksha" }, { "number": 1, @@ -25047,7 +26020,8 @@ "load": 98.06, "destination": 641, "speed": 0, - "mass": 197.06 + "mass": 197.06, + "race": "Ricksha" }, { "number": 1, @@ -25062,7 +26036,8 @@ "load": 0, "destination": 25, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25077,7 +26052,8 @@ "load": 0, "destination": 698, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25092,7 +26068,8 @@ "load": 0, "destination": 538, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25107,7 +26084,8 @@ "load": 0, "destination": 432, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25122,7 +26100,8 @@ "load": 0, "destination": 338, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25137,7 +26116,8 @@ "load": 0, "destination": 585, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25152,7 +26132,8 @@ "load": 0, "destination": 410, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25167,7 +26148,8 @@ "load": 0, "destination": 358, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25182,7 +26164,8 @@ "load": 0, "destination": 599, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25197,7 +26180,8 @@ "load": 0, "destination": 38, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25212,7 +26196,8 @@ "load": 0, "destination": 173, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25227,7 +26212,8 @@ "load": 0, "destination": 296, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25242,7 +26228,8 @@ "load": 0, "destination": 17, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25257,7 +26244,8 @@ "load": 0, "destination": 282, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25272,7 +26260,8 @@ "load": 0, "destination": 79, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25287,7 +26276,8 @@ "load": 0, "destination": 593, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25302,7 +26292,8 @@ "load": 0, "destination": 72, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25317,7 +26308,8 @@ "load": 0, "destination": 231, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25332,7 +26324,8 @@ "load": 0, "destination": 394, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25347,7 +26340,8 @@ "load": 0, "destination": 369, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25362,7 +26356,8 @@ "load": 0, "destination": 292, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25377,7 +26372,8 @@ "load": 0, "destination": 693, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25392,7 +26388,8 @@ "load": 0, "destination": 635, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25407,7 +26404,8 @@ "load": 0, "destination": 654, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25422,7 +26420,8 @@ "load": 0, "destination": 87, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25437,7 +26436,8 @@ "load": 0, "destination": 12, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25452,7 +26452,8 @@ "load": 0, "destination": 507, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25467,7 +26468,8 @@ "load": 0, "destination": 532, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25482,7 +26484,8 @@ "load": 0, "destination": 298, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25497,7 +26500,8 @@ "load": 0, "destination": 446, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 18, @@ -25512,7 +26516,8 @@ "load": 0, "destination": 55, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 4, @@ -25527,7 +26532,8 @@ "load": 0, "destination": 332, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 4, @@ -25542,7 +26548,8 @@ "load": 0, "destination": 489, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25557,7 +26564,8 @@ "load": 0, "destination": 641, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Ricksha" }, { "number": 1, @@ -25572,7 +26580,8 @@ "load": 0, "destination": 378, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Frightners" }, { "number": 6, @@ -25587,7 +26596,8 @@ "load": 0, "destination": 410, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Frightners" }, { "number": 6, @@ -25602,7 +26612,8 @@ "load": 0, "destination": 585, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Frightners" }, { "number": 1, @@ -25617,7 +26628,8 @@ "load": 0, "destination": 538, "speed": 0, - "mass": 1 + "mass": 1, + "race": "sidiki" }, { "number": 1, @@ -25632,7 +26644,8 @@ "load": 0, "destination": 698, "speed": 0, - "mass": 1 + "mass": 1, + "race": "sidiki" }, { "number": 1, @@ -25647,7 +26660,8 @@ "load": 0, "destination": 410, "speed": 0, - "mass": 1 + "mass": 1, + "race": "sidiki" }, { "number": 1, @@ -25662,7 +26676,8 @@ "load": 0, "destination": 585, "speed": 0, - "mass": 1 + "mass": 1, + "race": "sidiki" }, { "number": 1, @@ -25677,7 +26692,8 @@ "load": 0, "destination": 376, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -25692,7 +26708,8 @@ "load": 0, "destination": 661, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -25707,7 +26724,8 @@ "load": 0, "destination": 74, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -25722,7 +26740,8 @@ "load": 0, "destination": 201, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -25737,7 +26756,8 @@ "load": 0, "destination": 275, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -25752,7 +26772,8 @@ "load": 0, "destination": 664, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -25767,7 +26788,8 @@ "load": 0, "destination": 29, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -25782,7 +26804,8 @@ "load": 0, "destination": 694, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -25797,7 +26820,8 @@ "load": 0, "destination": 25, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -25812,7 +26836,8 @@ "load": 0, "destination": 646, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -25827,7 +26852,8 @@ "load": 0, "destination": 641, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -25842,7 +26868,8 @@ "load": 0, "destination": 72, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -25857,7 +26884,8 @@ "load": 0, "destination": 251, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -25872,7 +26900,8 @@ "load": 0, "destination": 15, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -25887,7 +26916,8 @@ "load": 0, "destination": 409, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -25902,7 +26932,8 @@ "load": 0, "destination": 436, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -25917,7 +26948,8 @@ "load": 0, "destination": 305, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -25932,7 +26964,8 @@ "load": 0, "destination": 340, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -25947,7 +26980,8 @@ "load": 0, "destination": 624, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -25962,7 +26996,8 @@ "load": 0, "destination": 569, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -25977,7 +27012,8 @@ "load": 0, "destination": 377, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -25992,7 +27028,8 @@ "load": 0, "destination": 690, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -26007,7 +27044,8 @@ "load": 0, "destination": 665, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -26022,7 +27060,8 @@ "load": 0, "destination": 432, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -26037,7 +27076,8 @@ "load": 0, "destination": 698, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -26052,7 +27092,8 @@ "load": 0, "destination": 538, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -26067,7 +27108,8 @@ "load": 0, "destination": 434, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -26082,7 +27124,8 @@ "load": 0, "destination": 358, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -26097,7 +27140,8 @@ "load": 0, "destination": 26, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -26112,7 +27156,8 @@ "load": 0, "destination": 471, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -26127,7 +27172,8 @@ "load": 0, "destination": 438, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -26142,7 +27188,8 @@ "load": 0, "destination": 222, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -26157,7 +27204,8 @@ "load": 0, "destination": 585, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -26172,7 +27220,8 @@ "load": 0, "destination": 410, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -26187,7 +27236,8 @@ "load": 0, "destination": 295, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 1, @@ -26202,7 +27252,8 @@ "load": 0, "destination": 599, "speed": 0, - "mass": 1 + "mass": 1, + "race": "Enoxes" }, { "number": 24, @@ -26217,7 +27268,8 @@ "load": 0, "destination": 538, "speed": 0, - "mass": 2.06 + "mass": 2.06, + "race": "Enoxes" }, { "number": 24, @@ -26232,7 +27284,8 @@ "load": 0, "destination": 698, "speed": 0, - "mass": 2.06 + "mass": 2.06, + "race": "Enoxes" }, { "number": 24, @@ -26247,7 +27300,8 @@ "load": 0, "destination": 538, "speed": 0, - "mass": 2.06 + "mass": 2.06, + "race": "Enoxes" }, { "number": 24, @@ -26262,7 +27316,8 @@ "load": 0, "destination": 698, "speed": 0, - "mass": 2.06 + "mass": 2.06, + "race": "Enoxes" }, { "number": 1, @@ -26277,7 +27332,8 @@ "load": 0, "destination": 95, "speed": 0, - "mass": 1 + "mass": 1, + "race": "3JO6HbIE" }, { "number": 1, @@ -26292,7 +27348,8 @@ "load": 0, "destination": 449, "speed": 0, - "mass": 1 + "mass": 1, + "race": "3JO6HbIE" } ], "unidentifiedGroup": [ diff --git a/ui/frontend/src/api/game-state.ts b/ui/frontend/src/api/game-state.ts index eabbdc2..b81a34b 100644 --- a/ui/frontend/src/api/game-state.ts +++ b/ui/frontend/src/api/game-state.ts @@ -193,6 +193,15 @@ export interface ReportShipGroupBase { range: number | null; speed: number; mass: number; + /** + * Owning race for the group. The engine fills this from + * `sg.OwnerID` (and the legacy parser from the section header + * that introduced the row) so the inspector can name foreign + * owners directly instead of falling back to a "foreign" + * placeholder when the planet kind does not carry an `owner` + * heuristic. Empty when the source report predates the field. + */ + race: string; } /** @@ -869,6 +878,7 @@ function decodeLocalShipGroups(report: Report): ReportLocalShipGroup[] { mass: g.mass(), state: g.state() ?? "", fleet: g.fleet(), + race: g.race() ?? "", }); } return out; @@ -895,6 +905,7 @@ function decodeOtherShipGroups(report: Report): ReportOtherShipGroup[] { range, speed: g.speed(), mass: g.mass(), + race: g.race() ?? "", }); } return out; diff --git a/ui/frontend/src/api/synthetic-report.ts b/ui/frontend/src/api/synthetic-report.ts index 216711f..ed8c222 100644 --- a/ui/frontend/src/api/synthetic-report.ts +++ b/ui/frontend/src/api/synthetic-report.ts @@ -186,6 +186,7 @@ interface SyntheticShipGroup { mass?: number; state?: string; fleet?: string; + race?: string; } interface SyntheticIncomingGroup { @@ -344,6 +345,7 @@ function decodeSyntheticReport(json: unknown): GameReport { mass: numOr0(g.mass), state: typeof g.state === "string" ? g.state : "", fleet: typeof g.fleet === "string" ? g.fleet : null, + race: typeof g.race === "string" ? g.race : race, }), ); const otherShipGroups: ReportOtherShipGroup[] = (root.otherGroup ?? []).map( @@ -358,6 +360,7 @@ function decodeSyntheticReport(json: unknown): GameReport { range: typeof g.range === "number" ? g.range : null, speed: numOr0(g.speed), mass: numOr0(g.mass), + race: typeof g.race === "string" ? g.race : "", }), ); const incomingShipGroups: ReportIncomingShipGroup[] = ( diff --git a/ui/frontend/src/lib/i18n/locales/en.ts b/ui/frontend/src/lib/i18n/locales/en.ts index 9939afd..8e51f42 100644 --- a/ui/frontend/src/lib/i18n/locales/en.ts +++ b/ui/frontend/src/lib/i18n/locales/en.ts @@ -600,10 +600,7 @@ const en = { "game.inspector.planet.ship_groups.race_filter.aria": "stationed race", "game.inspector.planet.ship_groups.title": "stationed ship groups", - "game.inspector.planet.ship_groups.row.count": "{count} ships", - "game.inspector.planet.ship_groups.row.mass": "mass {mass}", "game.inspector.planet.ship_groups.race.unknown": "unknown", - "game.inspector.planet.ship_groups.race.foreign": "foreign", "game.report.loading": "loading report…", "game.report.back_to_map": "back to map", diff --git a/ui/frontend/src/lib/i18n/locales/ru.ts b/ui/frontend/src/lib/i18n/locales/ru.ts index 5ce4db9..a2994e7 100644 --- a/ui/frontend/src/lib/i18n/locales/ru.ts +++ b/ui/frontend/src/lib/i18n/locales/ru.ts @@ -601,10 +601,7 @@ const ru: Record = { "game.inspector.planet.ship_groups.race_filter.aria": "раса в орбите", "game.inspector.planet.ship_groups.title": "корабли на орбите", - "game.inspector.planet.ship_groups.row.count": "{count} кораблей", - "game.inspector.planet.ship_groups.row.mass": "масса {mass}", "game.inspector.planet.ship_groups.race.unknown": "неизвестно", - "game.inspector.planet.ship_groups.race.foreign": "чужие", "game.report.loading": "загрузка отчёта…", "game.report.back_to_map": "назад к карте", diff --git a/ui/frontend/src/lib/inspectors/planet/ship-groups.svelte b/ui/frontend/src/lib/inspectors/planet/ship-groups.svelte index b39a267..8182496 100644 --- a/ui/frontend/src/lib/inspectors/planet/ship-groups.svelte +++ b/ui/frontend/src/lib/inspectors/planet/ship-groups.svelte @@ -66,6 +66,17 @@ modes because the dropdown already names the active race. groupId: string | null; } + // F8-05 owner-feedback: the row carries the authoritative `race` + // field projected by the engine (and by the legacy parser via the + // ` Groups` header), so every stationed group surfaces its + // real owner. The planet-owner / "foreign" fallback is gone — when + // the wire carries no race the row falls back to the i18n + // `race.unknown` placeholder, matching how the local-race column + // degrades if `localRace` is missing. + const unknownRace = $derived( + i18n.t("game.inspector.planet.ship_groups.race.unknown"), + ); + const stationedRows: StationedRow[] = $derived.by(() => { const rows: StationedRow[] = []; for (const g of localShipGroups) { @@ -73,7 +84,7 @@ modes because the dropdown already names the active race. if (g.origin !== null || g.range !== null) continue; rows.push({ key: `local:${g.id}`, - race: localRace || i18n.t("game.inspector.planet.ship_groups.race.unknown"), + race: g.race || localRace || unknownRace, class: g.class, count: g.count, mass: g.mass, @@ -81,16 +92,13 @@ modes because the dropdown already names the active race. groupId: g.id, }); } - const foreignRace = - planet.owner ?? - i18n.t("game.inspector.planet.ship_groups.race.foreign"); for (let i = 0; i < otherShipGroups.length; i++) { const g = otherShipGroups[i]!; if (g.destination !== planet.number) continue; if (g.origin !== null || g.range !== null) continue; rows.push({ key: `other:${i}`, - race: foreignRace, + race: g.race || unknownRace, class: g.class, count: g.count, mass: g.mass, @@ -183,34 +191,20 @@ modes because the dropdown already names the active race. {@const groupId = row.groupId} {:else} - {row.class} - - {i18n.t("game.inspector.planet.ship_groups.row.count", { - count: String(row.count), - })} - - - {i18n.t("game.inspector.planet.ship_groups.row.mass", { - mass: formatFloat(row.mass), - })} - +
+ {row.class} + {row.count} × + {formatFloat(row.mass)} +
{/if} {/each} @@ -260,13 +254,12 @@ modes because the dropdown already names the active race. .row { display: block; font-size: 0.85rem; - font-variant-numeric: tabular-nums; } - .row > span, - .row > .select { + .cells { display: grid; grid-template-columns: 1fr auto auto; gap: 0.5rem; + align-items: baseline; } .select { width: 100%; @@ -286,8 +279,15 @@ modes because the dropdown already names the active race. .class { color: var(--color-text-muted); } - .count, + .count { + color: var(--color-text-muted); + text-align: right; + font-variant-numeric: tabular-nums; + } .mass { color: var(--color-text-muted); + text-align: right; + font-family: var(--font-mono); + font-variant-numeric: tabular-nums; } diff --git a/ui/frontend/src/proto/galaxy/fbs/report/local-group.ts b/ui/frontend/src/proto/galaxy/fbs/report/local-group.ts index 00943ab..37a0eb3 100644 --- a/ui/frontend/src/proto/galaxy/fbs/report/local-group.ts +++ b/ui/frontend/src/proto/galaxy/fbs/report/local-group.ts @@ -104,8 +104,15 @@ fleet(optionalEncoding?:any):string|Uint8Array|null { return offset ? this.bb!.__string(this.bb_pos + offset, optionalEncoding) : null; } +race():string|null +race(optionalEncoding:flatbuffers.Encoding):string|Uint8Array|null +race(optionalEncoding?:any):string|Uint8Array|null { + const offset = this.bb!.__offset(this.bb_pos, 30); + return offset ? this.bb!.__string(this.bb_pos + offset, optionalEncoding) : null; +} + static startLocalGroup(builder:flatbuffers.Builder) { - builder.startObject(13); + builder.startObject(14); } static addNumber(builder:flatbuffers.Builder, number:bigint) { @@ -172,6 +179,10 @@ static addFleet(builder:flatbuffers.Builder, fleetOffset:flatbuffers.Offset) { builder.addFieldOffset(12, fleetOffset, 0); } +static addRace(builder:flatbuffers.Builder, raceOffset:flatbuffers.Offset) { + builder.addFieldOffset(13, raceOffset, 0); +} + static endLocalGroup(builder:flatbuffers.Builder):flatbuffers.Offset { const offset = builder.endObject(); builder.requiredField(offset, 24) // id @@ -193,7 +204,8 @@ unpack(): LocalGroupT { this.mass(), (this.id() !== null ? this.id()!.unpack() : null), this.state(), - this.fleet() + this.fleet(), + this.race() ); } @@ -212,6 +224,7 @@ unpackTo(_o: LocalGroupT): void { _o.id = (this.id() !== null ? this.id()!.unpack() : null); _o.state = this.state(); _o.fleet = this.fleet(); + _o.race = this.race(); } } @@ -229,7 +242,8 @@ constructor( public mass: number = 0.0, public id: UUIDT|null = null, public state: string|Uint8Array|null = null, - public fleet: string|Uint8Array|null = null + public fleet: string|Uint8Array|null = null, + public race: string|Uint8Array|null = null ){} @@ -239,6 +253,7 @@ pack(builder:flatbuffers.Builder): flatbuffers.Offset { const cargo = (this.cargo !== null ? builder.createString(this.cargo!) : 0); const state = (this.state !== null ? builder.createString(this.state!) : 0); const fleet = (this.fleet !== null ? builder.createString(this.fleet!) : 0); + const race = (this.race !== null ? builder.createString(this.race!) : 0); LocalGroup.startLocalGroup(builder); LocalGroup.addNumber(builder, this.number); @@ -256,6 +271,7 @@ pack(builder:flatbuffers.Builder): flatbuffers.Offset { LocalGroup.addId(builder, (this.id !== null ? this.id!.pack(builder) : 0)); LocalGroup.addState(builder, state); LocalGroup.addFleet(builder, fleet); + LocalGroup.addRace(builder, race); return LocalGroup.endLocalGroup(builder); } diff --git a/ui/frontend/src/proto/galaxy/fbs/report/other-group.ts b/ui/frontend/src/proto/galaxy/fbs/report/other-group.ts index d833d66..7f1a7b7 100644 --- a/ui/frontend/src/proto/galaxy/fbs/report/other-group.ts +++ b/ui/frontend/src/proto/galaxy/fbs/report/other-group.ts @@ -84,8 +84,15 @@ mass():number { return offset ? this.bb!.readFloat32(this.bb_pos + offset) : 0.0; } +race():string|null +race(optionalEncoding:flatbuffers.Encoding):string|Uint8Array|null +race(optionalEncoding?:any):string|Uint8Array|null { + const offset = this.bb!.__offset(this.bb_pos, 24); + return offset ? this.bb!.__string(this.bb_pos + offset, optionalEncoding) : null; +} + static startOtherGroup(builder:flatbuffers.Builder) { - builder.startObject(10); + builder.startObject(11); } static addNumber(builder:flatbuffers.Builder, number:bigint) { @@ -140,12 +147,16 @@ static addMass(builder:flatbuffers.Builder, mass:number) { builder.addFieldFloat32(9, mass, 0.0); } +static addRace(builder:flatbuffers.Builder, raceOffset:flatbuffers.Offset) { + builder.addFieldOffset(10, raceOffset, 0); +} + static endOtherGroup(builder:flatbuffers.Builder):flatbuffers.Offset { const offset = builder.endObject(); return offset; } -static createOtherGroup(builder:flatbuffers.Builder, number:bigint, class_Offset:flatbuffers.Offset, techOffset:flatbuffers.Offset, cargoOffset:flatbuffers.Offset, load:number, destination:bigint, origin:bigint|null, range:number|null, speed:number, mass:number):flatbuffers.Offset { +static createOtherGroup(builder:flatbuffers.Builder, number:bigint, class_Offset:flatbuffers.Offset, techOffset:flatbuffers.Offset, cargoOffset:flatbuffers.Offset, load:number, destination:bigint, origin:bigint|null, range:number|null, speed:number, mass:number, raceOffset:flatbuffers.Offset):flatbuffers.Offset { OtherGroup.startOtherGroup(builder); OtherGroup.addNumber(builder, number); OtherGroup.addClass(builder, class_Offset); @@ -159,6 +170,7 @@ static createOtherGroup(builder:flatbuffers.Builder, number:bigint, class_Offset OtherGroup.addRange(builder, range); OtherGroup.addSpeed(builder, speed); OtherGroup.addMass(builder, mass); + OtherGroup.addRace(builder, raceOffset); return OtherGroup.endOtherGroup(builder); } @@ -173,7 +185,8 @@ unpack(): OtherGroupT { this.origin(), this.range(), this.speed(), - this.mass() + this.mass(), + this.race() ); } @@ -189,6 +202,7 @@ unpackTo(_o: OtherGroupT): void { _o.range = this.range(); _o.speed = this.speed(); _o.mass = this.mass(); + _o.race = this.race(); } } @@ -203,7 +217,8 @@ constructor( public origin: bigint|null = null, public range: number|null = null, public speed: number = 0.0, - public mass: number = 0.0 + public mass: number = 0.0, + public race: string|Uint8Array|null = null ){} @@ -211,6 +226,7 @@ pack(builder:flatbuffers.Builder): flatbuffers.Offset { const class_ = (this.class_ !== null ? builder.createString(this.class_!) : 0); const tech = OtherGroup.createTechVector(builder, builder.createObjectOffsetList(this.tech)); const cargo = (this.cargo !== null ? builder.createString(this.cargo!) : 0); + const race = (this.race !== null ? builder.createString(this.race!) : 0); return OtherGroup.createOtherGroup(builder, this.number, @@ -222,7 +238,8 @@ pack(builder:flatbuffers.Builder): flatbuffers.Offset { this.origin, this.range, this.speed, - this.mass + this.mass, + race ); } } diff --git a/ui/frontend/tests/inspector-planet-ship-groups.test.ts b/ui/frontend/tests/inspector-planet-ship-groups.test.ts index 7e00b33..8b41873 100644 --- a/ui/frontend/tests/inspector-planet-ship-groups.test.ts +++ b/ui/frontend/tests/inspector-planet-ship-groups.test.ts @@ -69,6 +69,7 @@ function localGroup( mass: 12, state: "In_Orbit", fleet: null, + race: "Earthlings", ...overrides, }; } @@ -87,6 +88,7 @@ function otherGroup( range: null, speed: 0, mass: 25, + race: "Klingons", ...overrides, }; } diff --git a/ui/frontend/tests/inspector-ship-group-actions.test.ts b/ui/frontend/tests/inspector-ship-group-actions.test.ts index 69b0fe2..fd1523d 100644 --- a/ui/frontend/tests/inspector-ship-group-actions.test.ts +++ b/ui/frontend/tests/inspector-ship-group-actions.test.ts @@ -108,6 +108,7 @@ function localGroup( mass: 12, state: "In_Orbit", fleet: null, + race: "Earthlings", ...overrides, }; } diff --git a/ui/frontend/tests/inspector-ship-group-dismantle-confirm.test.ts b/ui/frontend/tests/inspector-ship-group-dismantle-confirm.test.ts index 71c1618..08fce6d 100644 --- a/ui/frontend/tests/inspector-ship-group-dismantle-confirm.test.ts +++ b/ui/frontend/tests/inspector-ship-group-dismantle-confirm.test.ts @@ -119,6 +119,7 @@ function group( mass: 12, state: "In_Orbit", fleet: null, + race: "Earthlings", ...overrides, }; } diff --git a/ui/frontend/tests/inspector-ship-group-modernize-cost.test.ts b/ui/frontend/tests/inspector-ship-group-modernize-cost.test.ts index c0e502a..5577f4d 100644 --- a/ui/frontend/tests/inspector-ship-group-modernize-cost.test.ts +++ b/ui/frontend/tests/inspector-ship-group-modernize-cost.test.ts @@ -104,6 +104,7 @@ function group( mass: 25, state: "In_Orbit", fleet: null, + race: "Earthlings", ...overrides, }; } diff --git a/ui/frontend/tests/inspector-ship-group.test.ts b/ui/frontend/tests/inspector-ship-group.test.ts index 3cb4ca7..9e11427 100644 --- a/ui/frontend/tests/inspector-ship-group.test.ts +++ b/ui/frontend/tests/inspector-ship-group.test.ts @@ -79,6 +79,7 @@ function localGroup( mass: 12, state: "In_Orbit", fleet: null, + race: "Earthlings", ...overrides, }; } @@ -158,6 +159,7 @@ describe("ship-group inspector", () => { range: null, speed: 0, mass: 50, + race: "Klingons", }; const selection: ShipGroupSelection = { variant: "other", group }; const ui = render(ShipGroup, { props: { selection, planets: PLANETS } }); diff --git a/ui/frontend/tests/pending-send-routes.test.ts b/ui/frontend/tests/pending-send-routes.test.ts index fb07f23..15d8932 100644 --- a/ui/frontend/tests/pending-send-routes.test.ts +++ b/ui/frontend/tests/pending-send-routes.test.ts @@ -45,6 +45,7 @@ function localGroup(overrides: Partial & Pick { mass: 12, state: "In_Orbit", fleet: null, + race: "Earthlings", }, ], }), @@ -112,6 +113,7 @@ describe("reportToWorld — ship groups", () => { mass: 50, state: "In_Space", fleet: null, + race: "Earthlings", }, ], }), @@ -237,6 +239,7 @@ describe("reportToWorld — ship groups", () => { origin: null, range: null, speed: 0, + race: "Earthlings", mass: 1, state: "In_Orbit", fleet: null,