diff --git a/server/pkg/store/rw/migrations/1728212178_merge_changes.sql b/server/pkg/store/rw/migrations/1728212178_merge_changes.sql new file mode 100644 index 00000000..2aa00c6a --- /dev/null +++ b/server/pkg/store/rw/migrations/1728212178_merge_changes.sql @@ -0,0 +1 @@ +UPDATE transcript_change SET merged=true WHERE id IN ('DMwBUzHBPsuKYpQqTrtaxE', 'E78Zm6kd2DdzzEyC5uDaU', 'wcww3GYaNMewRkHxd2hVdZ', 'CvJVteYrHRrB9MhFqRWEDi', '9GavYyywjqAaTkrdQquKQj', 'xkmLuCm2v558LhsKFKr64a'); \ No newline at end of file diff --git a/server/service/grpc/common.go b/server/service/grpc/common.go index fca902a5..56298618 100644 --- a/server/service/grpc/common.go +++ b/server/service/grpc/common.go @@ -47,13 +47,13 @@ func GetClaims(ctx context.Context, auth *jwt.Auth) (*jwt.Claims, error) { return claims, nil } -func IsAuthor(ctx context.Context, auth *jwt.Auth, authorID string) bool { +func IsAuthor(ctx context.Context, auth *jwt.Auth, resourceAuthorID string) bool { token := jwt.ExtractTokenFromRequestContext(ctx) if token == "" { return false } if claims, err := auth.VerifyToken(token); err == nil { - return claims.AuthorID == authorID + return claims.AuthorID == resourceAuthorID } return false } diff --git a/server/service/grpc/transcript.go b/server/service/grpc/transcript.go index 634220b0..1ca62e3b 100644 --- a/server/service/grpc/transcript.go +++ b/server/service/grpc/transcript.go @@ -243,13 +243,8 @@ func (s *TranscriptService) ListChunkContributions(ctx context.Context, request func (s *TranscriptService) GetChunkContribution(ctx context.Context, request *api.GetChunkContributionRequest) (*api.ChunkContribution, error) { - claims, err := GetClaims(ctx, s.auth) - if err != nil { - return nil, err - } - var contrib *models.ChunkContribution - err = s.persistentDB.WithStore(func(s *rw.Store) error { + err := s.persistentDB.WithStore(func(s *rw.Store) error { var err error contrib, err = s.GetChunkContribution(ctx, request.ContributionId) if err != nil { @@ -260,10 +255,8 @@ func (s *TranscriptService) GetChunkContribution(ctx context.Context, request *a if err != nil { return nil, ErrFromStore(err, request.ContributionId) } - if !claims.Approver { - if contrib.State == models.ContributionStatePending && contrib.Author.ID != claims.AuthorID { - return nil, ErrPermissionDenied("you cannot view another author's contribution when it is in the pending state") - } + if err := checkReadingAllowed(contrib.State, IsApprover(ctx, s.auth), IsAuthor(ctx, s.auth, contrib.Author.ID)); err != nil { + return nil, err } return contrib.Proto(), nil } @@ -473,10 +466,8 @@ func (s *TranscriptService) GetTranscriptChange(ctx context.Context, request *ap if err != nil { return nil, ErrFromStore(err, request.Id) } - if !IsApprover(ctx, s.auth) { - if change.State == models.ContributionStatePending && !IsAuthor(ctx, s.auth, change.Author.ID) { - return nil, ErrPermissionDenied("you cannot view another author's contribution when it is in the pending state") - } + if err := checkReadingAllowed(change.State, IsApprover(ctx, s.auth), IsAuthor(ctx, s.auth, change.Author.ID)); err != nil { + return nil, err } return change.Proto(), nil @@ -496,10 +487,8 @@ func (s *TranscriptService) GetTranscriptChangeDiff(ctx context.Context, request if err != nil { return nil, ErrFromStore(err, request.Id) } - if !IsApprover(ctx, s.auth) { - if newTranscript.State == models.ContributionStatePending && IsAuthor(ctx, s.auth, newTranscript.Author.ID) { - return nil, ErrPermissionDenied("you cannot view another author's contribution diff when it is in the pending state") - } + if err := checkReadingAllowed(newTranscript.State, IsApprover(ctx, s.auth), IsAuthor(ctx, s.auth, newTranscript.Author.ID)); err != nil { + return nil, err } oldTranscript, err := s.episodeCache.GetEpisode(newTranscript.EpID) @@ -810,3 +799,10 @@ func (s *TranscriptService) createAuthorNotification( ClickThoughURL: util.StringP("/me"), }) } + +func checkReadingAllowed(state models.ContributionState, isApprover bool, isAuthor bool) error { + if !isApprover && (state == models.ContributionStatePending && !isAuthor) { + return ErrPermissionDenied("you cannot view another author's contribution diff when it is in the pending state") + } + return nil +} diff --git a/server/var/data/episodes/ep-guide-S1E04.json b/server/var/data/episodes/ep-guide-S1E04.json index 696f0f5c..293898f5 100644 --- a/server/var/data/episodes/ep-guide-S1E04.json +++ b/server/var/data/episodes/ep-guide-S1E04.json @@ -7,7 +7,7 @@ "episode": 4, "name": "The Ricky Gervais Guide to: Philosophy", "summary": "", - "version": "0.0.1", + "version": "0.0.2", "release_date": "2009-03-17T12:00:00Z", "incomplete": false, "bestof": false, @@ -7991,21 +7991,21 @@ "id": "ep-guide-S1E04-570", "pos": 570, "timestamp": 2432000000000, - "duration": 7886000000, + "duration": 8043000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", "actor": "karl", "metadata": null, - "content": "Suzanne kept saying to me \"That's a nonsense, so stop saying that! You suddenly picked that up from someone! I said, you've never said that before, you say it three times in about two days.\"", + "content": "Suzanne kept saying to me \"That's a nonsense.\" I said \"Stop saying that! You suddenly picked that up from someone!\" I said \"You've never said that before and you've done it three times in about two days.\"", "notable": false, "placeholder": false }, { "id": "ep-guide-S1E04-571", "pos": 571, - "timestamp": 2439886000000, - "duration": 1245000000, + "timestamp": 2440043000000, + "duration": 1182000000, "timestamp_inferred": true, "timestamp_distance": 1, "type": "chat", @@ -8018,8 +8018,8 @@ { "id": "ep-guide-S1E04-572", "pos": 572, - "timestamp": 2441131000000, - "duration": 1869000000, + "timestamp": 2441225000000, + "duration": 1775000000, "timestamp_inferred": true, "timestamp_distance": 2, "type": "chat", @@ -10709,6 +10709,7 @@ ], "contributors": [ "Bowmann01", + "Hopper2004", "MchlPtrsn", "RevTheThird", "T2880", diff --git a/server/var/data/episodes/ep-other-S1E14.json b/server/var/data/episodes/ep-other-S1E14.json index b83e6c7d..e931ef88 100644 --- a/server/var/data/episodes/ep-other-S1E14.json +++ b/server/var/data/episodes/ep-other-S1E14.json @@ -7,7 +7,7 @@ "episode": 14, "name": "Pilot - Learn English with Ricky Gervais", "summary": "", - "version": "0.0.1", + "version": "0.0.2", "release_date": "2012-08-21T00:00:00Z", "incomplete": false, "bestof": false, @@ -1724,7 +1724,7 @@ "type": "chat", "actor": "karl", "metadata": null, - "content": "So there's something wrong with you. You've got a hairy bollock. Your back is lovely and bold.", + "content": "So there's something wrong with you. You've got a hairy bollock. Your back is lovely and bald.", "notable": false, "placeholder": false }, diff --git a/server/var/data/episodes/ep-podcast-S1E10.json b/server/var/data/episodes/ep-podcast-S1E10.json index bc3ee9f7..5c846c8a 100644 --- a/server/var/data/episodes/ep-podcast-S1E10.json +++ b/server/var/data/episodes/ep-podcast-S1E10.json @@ -13,7 +13,7 @@ "bestof": false, "special": false, "locked": true, - "offset_accuracy": 100, + "offset_accuracy": 97, "audio_quality": "", "metadata": { "cover_art_url": "/assets/cover/default.jpg", @@ -1848,11 +1848,11 @@ "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown a", + "actor": "ricky", "metadata": null, "content": "No.", "notable": false, - "placeholder": true + "placeholder": false }, { "id": "ep-podcast-S1E10-132", @@ -1862,11 +1862,11 @@ "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown c", + "actor": "karl", "metadata": null, "content": "Why not?", "notable": false, - "placeholder": true + "placeholder": false }, { "id": "ep-podcast-S1E10-133", @@ -1876,11 +1876,11 @@ "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown a", + "actor": "ricky", "metadata": null, - "content": "As you said, it would get a bit boring. You know, sleep is your rest, your time off. It helps you detoxify. It helps you sort of think things through on a subconscious level.", + "content": "Because, as you said, it would get a bit boring. You know, sleep is your rest, your time off. It helps you detoxify. It helps you sort of think things through on a subconscious level.", "notable": false, - "placeholder": true + "placeholder": false }, { "id": "ep-podcast-S1E10-134", @@ -1890,11 +1890,11 @@ "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown c", + "actor": "karl", "metadata": null, "content": "But don't you ever get it where. I mean, sometimes it's brilliant to have a sleep when you're tired. But don't you sometimes feel that's the.", "notable": false, - "placeholder": true + "placeholder": false }, { "id": "ep-podcast-S1E10-135", @@ -1904,11 +1904,11 @@ "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown a", + "actor": "ricky", "metadata": null, - "content": "Best time to have a sleep when you're tired?", + "content": "Yeah, that's the best time to have a sleep, when you're tired.", "notable": false, - "placeholder": true + "placeholder": false }, { "id": "ep-podcast-S1E10-136", @@ -1918,11 +1918,11 @@ "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown c", + "actor": "karl", "metadata": null, "content": "No, but sometimes when you go to bed and you're not that tired and you're kind of thinking, oh, I'm gonna waste some hours of my life now, and I'm not really in the mood for this.", "notable": false, - "placeholder": true + "placeholder": false }, { "id": "ep-podcast-S1E10-137", @@ -1932,11 +1932,11 @@ "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown a", + "actor": "ricky", "metadata": null, "content": "Well, that's just wishing you had longer on this earth doing creative things. I mean, if you didn't have to sleep, you could spend more time talking to a tortoise than going to the toffee shop.", "notable": false, - "placeholder": true + "placeholder": false }, { "id": "ep-podcast-S1E10-138", @@ -1946,11 +1946,11 @@ "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown c", + "actor": "karl", "metadata": null, - "content": "All right, just doing a little advert for Friday night comedy on Channel four. I mean, I don't know what you're doing. You might be going out and that, doing something nice, which, you know, if you are, then fair enough, go out. But I'm just saying, if you're staying in, you've got new green wing, right, that's nearly ready. Got. My name is Earl. The it crowd. All funny stuff and that. Don't know about you, but, you know, I'll be staying and watching it, just having a bag of crisps and stuff. So if you stay in, put the telly on, do that. If you're going out, go out, have a nice night. See you later.", + "content": "All right, just doing a little advert for Friday Night Comedy on Channel 4. I mean, I don't know what you're doing. You might be going out and that, doing something nice, which, you know, if you are, then fair enough, go out. But I'm just saying, if you're staying in, you've got new Green Wing, right, that's nearly ready. Y'got My Name is Earl, The IT Crowd. All funny stuff and that. Don't know about you, but, you know, I'll be staying in and watching it, just having a bag of crisps and stuff. So if you're staying in, put the telly on, do that. If you're going out, go out, have a nice night. See you later.", "notable": false, - "placeholder": true + "placeholder": false }, { "id": "ep-podcast-S1E10-139", @@ -1960,11 +1960,11 @@ "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown b", + "actor": "steve", "metadata": null, "content": "Well, it's that time again. If you'd give us the jingle, please.", "notable": false, - "placeholder": true + "placeholder": false }, { "id": "ep-podcast-S1E10-140", @@ -1974,11 +1974,11 @@ "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown a", + "actor": "ricky", "metadata": null, - "content": "Oh, Jim Panchida.", + "content": "Oh, chimpanzee that! Monkey nuts!", "notable": false, - "placeholder": true + "placeholder": false }, { "id": "ep-podcast-S1E10-141", @@ -1988,11 +1988,11 @@ "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown b", + "actor": "steve", "metadata": null, "content": "Okay, now that surely cannot be fair on anyone's ears listening.", "notable": false, - "placeholder": true + "placeholder": false }, { "id": "ep-podcast-S1E10-142", @@ -2002,11 +2002,11 @@ "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown c", + "actor": "karl", "metadata": null, "content": "Right. Um, ages ago, right, about the 1950s.", "notable": false, - "placeholder": true + "placeholder": false }, { "id": "ep-podcast-S1E10-143", @@ -2016,11 +2016,11 @@ "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown b", + "actor": "steve", "metadata": null, "content": "Oh, yeah.", "notable": false, - "placeholder": true + "placeholder": false }, { "id": "ep-podcast-S1E10-144", @@ -2030,211 +2030,281 @@ "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown a", + "actor": "ricky", "metadata": null, "content": "Oh, yeah.", "notable": false, - "placeholder": true + "placeholder": false }, { "id": "ep-podcast-S1E10-145", "pos": 145, "timestamp": 1266470000000, - "duration": 10240000000, + "duration": 3996000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown c", + "actor": "karl", "metadata": null, - "content": "There was this gangster knocking about and you know how, like, was he called hairy fingers? Do you know, like a lot of gangsters like, to get into gambling and that?", + "content": "There was this gangster knocking about and you know how, like...", "notable": false, - "placeholder": true + "placeholder": false }, { "id": "ep-podcast-S1E10-146", "pos": 146, + "timestamp": 1270466000000, + "duration": 1748000000, + "timestamp_inferred": true, + "timestamp_distance": 1, + "type": "chat", + "actor": "ricky", + "metadata": null, + "content": "Was he called hairy fingers?", + "notable": false, + "placeholder": false + }, + { + "id": "ep-podcast-S1E10-147", + "pos": 147, + "timestamp": 1272214000000, + "duration": 4496000000, + "timestamp_inferred": true, + "timestamp_distance": 2, + "type": "chat", + "actor": "karl", + "metadata": null, + "content": "Do you know, like a lot of gangsters like to get into gambling and that?", + "notable": false, + "placeholder": false + }, + { + "id": "ep-podcast-S1E10-148", + "pos": 148, "timestamp": 1276710000000, "duration": 1550000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown b", + "actor": "steve", "metadata": null, "content": "Yeah, yeah.", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-147", - "pos": 147, + "id": "ep-podcast-S1E10-149", + "pos": 149, "timestamp": 1278260000000, "duration": 12620000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown c", + "actor": "karl", "metadata": null, - "content": "And you know, like all these, all these peers and all these, all these mates who had, like, gangsters and stuff, they've all bought horses, right? That they tech you know, tech racing and they make money from them.", + "content": "And you know, like all these, all his peers and all these, all these mates who had, like, gangsters and stuff, they've all bought horses, right? That they take you know, take racing and they make money from them.", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-148", - "pos": 148, + "id": "ep-podcast-S1E10-150", + "pos": 150, "timestamp": 1290880000000, "duration": 860000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown b", + "actor": "steve", "metadata": null, "content": "Yeah.", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-149", - "pos": 149, + "id": "ep-podcast-S1E10-151", + "pos": 151, "timestamp": 1291740000000, "duration": 14840000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown c", + "actor": "karl", "metadata": null, - "content": "So anyway, he was shackles Seagull was no different and he was like, yeah, that's a good thing to get into. My might get into a bit of that. Right? So he gets himself this horse, right? And it is a big race coming up. That's why he sort of, he's a bit of a last minute and the.", + "content": "So anyway he was like, yeah, that's a good thing to get into. I might get into a bit of that. Right? So he gets himself this horse, right? And it, there's a big race coming up. That's why he sort of, he's a bit of a last minute.", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-150", - "pos": 150, + "id": "ep-podcast-S1E10-152", + "pos": 152, "timestamp": 1306580000000, "duration": 4440000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown a", + "actor": "ricky", "metadata": null, - "content": "Jockey turns up and it's fine. He's a human jockey and it's fine. Excellent. Okay, well that was another podcast.", + "content": "And the jockey turns up and it's fine. He's a human jockey and it's fine. Excellent. Okay, well that was another podcast.", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-151", - "pos": 151, + "id": "ep-podcast-S1E10-153", + "pos": 153, "timestamp": 1311020000000, - "duration": 1540000000, + "duration": 596000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown c", + "actor": "karl", "metadata": null, - "content": "So anyway, so please listen.", + "content": "So anyway...", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-152", - "pos": 152, + "id": "ep-podcast-S1E10-154", + "pos": 154, + "timestamp": 1311616000000, + "duration": 944000000, + "timestamp_inferred": true, + "timestamp_distance": 1, + "type": "chat", + "actor": "ricky", + "metadata": null, + "content": "So please listen...", + "notable": false, + "placeholder": false + }, + { + "id": "ep-podcast-S1E10-155", + "pos": 155, "timestamp": 1312560000000, "duration": 1300000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown b", + "actor": "steve", "metadata": null, - "content": "There's more, there's more.", + "content": "Hang on, there's more, there's more.", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-153", - "pos": 153, + "id": "ep-podcast-S1E10-156", + "pos": 156, "timestamp": 1313860000000, "duration": 7410000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown c", + "actor": "karl", "metadata": null, - "content": "So, so anyway, so this big race is coming up is. Yeah, he's like, I've got to be involved in this because I can make a lot of money out of me also.", + "content": "So, so anyway, so this big race is coming up is. He's like, I've got to be involved in this because I can make a lot of money out of my horse here.", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-154", - "pos": 154, + "id": "ep-podcast-S1E10-157", + "pos": 157, "timestamp": 1321270000000, "duration": 1270000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown a", + "actor": "ricky", "metadata": null, "content": "Choose the jockey wisely, though.", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-155", - "pos": 155, + "id": "ep-podcast-S1E10-158", + "pos": 158, "timestamp": 1322540000000, - "duration": 15160000000, + "duration": 8485000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown c", + "actor": "karl", "metadata": null, - "content": "So he says to his like, mate, he said, look, I've got myself horse and that's. He said, we just need a jockey. Get someone sort out what have you so I can get in this race the jockey club makes like, yeah, all right, I love, I'll have a word and that. Have a look around that. Safety. Is anyone deep?", + "content": "So he says to his like, mate, he said, look, I've got myself a horse and that. He said, we just need a jockey. Get someone, sort it out, what have you, so I can get in this race-", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-156", - "pos": 156, + "id": "ep-podcast-S1E10-159", + "pos": 159, + "timestamp": 1331025000000, + "duration": 1001000000, + "timestamp_inferred": true, + "timestamp_distance": 1, + "type": "chat", + "actor": "ricky", + "metadata": null, + "content": "Go to the jockey club", + "notable": false, + "placeholder": false + }, + { + "id": "ep-podcast-S1E10-160", + "pos": 160, + "timestamp": 1332026000000, + "duration": 5674000000, + "timestamp_inferred": true, + "timestamp_distance": 2, + "type": "chat", + "actor": "karl", + "metadata": null, + "content": "His mate's like, yeah, all right, I'll have a word and that. Have a look around and that. See if there's anyone decent.", + "notable": false, + "placeholder": false + }, + { + "id": "ep-podcast-S1E10-161", + "pos": 161, "timestamp": 1337700000000, "duration": 6030000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown a", + "actor": "ricky", "metadata": null, - "content": "There's never been a shortage jockeys because a lot of them don't make the grade. So there's, there's, there's always too many jockeys to go around.", + "content": "And the good thing about jockeys is, there's never been a shortage jockeys because a lot of them don't make the grade. So there's always too many jockeys to go around.", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-157", - "pos": 157, + "id": "ep-podcast-S1E10-162", + "pos": 162, "timestamp": 1343730000000, "duration": 1570000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown b", + "actor": "steve", "metadata": null, - "content": "Only always too many human jockey.", + "content": "Always too many human jockeys?", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-158", - "pos": 158, + "id": "ep-podcast-S1E10-163", + "pos": 163, "timestamp": 1345300000000, "duration": 4500000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown a", + "actor": "ricky", "metadata": null, - "content": "Yeah, there's you. There's never a problem getting jockeys. Go on.", + "content": "Yeah, there's never a problem getting jockeys. Go on.", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-159", - "pos": 159, + "id": "ep-podcast-S1E10-164", + "pos": 164, "timestamp": 1349800000000, "duration": 2100000000, "timestamp_inferred": false, @@ -2247,8 +2317,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-160", - "pos": 160, + "id": "ep-podcast-S1E10-165", + "pos": 165, "timestamp": 1351900000000, "duration": 2560000000, "timestamp_inferred": false, @@ -2261,8 +2331,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-161", - "pos": 161, + "id": "ep-podcast-S1E10-166", + "pos": 166, "timestamp": 1354460000000, "duration": 5580000000, "timestamp_inferred": false, @@ -2275,8 +2345,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-162", - "pos": 162, + "id": "ep-podcast-S1E10-167", + "pos": 167, "timestamp": 1360040000000, "duration": 4810000000, "timestamp_inferred": false, @@ -2289,8 +2359,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-163", - "pos": 163, + "id": "ep-podcast-S1E10-168", + "pos": 168, "timestamp": 1364850000000, "duration": 3150000000, "timestamp_inferred": false, @@ -2303,8 +2373,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-164", - "pos": 164, + "id": "ep-podcast-S1E10-169", + "pos": 169, "timestamp": 1368000000000, "duration": 3760000000, "timestamp_inferred": false, @@ -2317,8 +2387,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-165", - "pos": 165, + "id": "ep-podcast-S1E10-170", + "pos": 170, "timestamp": 1371760000000, "duration": 3480000000, "timestamp_inferred": false, @@ -2331,8 +2401,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-166", - "pos": 166, + "id": "ep-podcast-S1E10-171", + "pos": 171, "timestamp": 1375240000000, "duration": 950000000, "timestamp_inferred": false, @@ -2345,8 +2415,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-167", - "pos": 167, + "id": "ep-podcast-S1E10-172", + "pos": 172, "timestamp": 1376190000000, "duration": 10690000000, "timestamp_inferred": false, @@ -2359,8 +2429,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-168", - "pos": 168, + "id": "ep-podcast-S1E10-173", + "pos": 173, "timestamp": 1386880000000, "duration": 4960000000, "timestamp_inferred": false, @@ -2373,8 +2443,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-169", - "pos": 169, + "id": "ep-podcast-S1E10-174", + "pos": 174, "timestamp": 1391840000000, "duration": 8990000000, "timestamp_inferred": false, @@ -2387,8 +2457,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-170", - "pos": 170, + "id": "ep-podcast-S1E10-175", + "pos": 175, "timestamp": 1400830000000, "duration": 2990000000, "timestamp_inferred": false, @@ -2401,8 +2471,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-171", - "pos": 171, + "id": "ep-podcast-S1E10-176", + "pos": 176, "timestamp": 1403820000000, "duration": 2860000000, "timestamp_inferred": false, @@ -2415,8 +2485,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-172", - "pos": 172, + "id": "ep-podcast-S1E10-177", + "pos": 177, "timestamp": 1406680000000, "duration": 3330000000, "timestamp_inferred": false, @@ -2429,8 +2499,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-173", - "pos": 173, + "id": "ep-podcast-S1E10-178", + "pos": 178, "timestamp": 1410010000000, "duration": 14550000000, "timestamp_inferred": false, @@ -2443,8 +2513,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-174", - "pos": 174, + "id": "ep-podcast-S1E10-179", + "pos": 179, "timestamp": 1424560000000, "duration": 1000000000, "timestamp_inferred": false, @@ -2457,8 +2527,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-175", - "pos": 175, + "id": "ep-podcast-S1E10-180", + "pos": 180, "timestamp": 1425560000000, "duration": 7020000000, "timestamp_inferred": false, @@ -2471,8 +2541,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-176", - "pos": 176, + "id": "ep-podcast-S1E10-181", + "pos": 181, "timestamp": 1432580000000, "duration": 6720000000, "timestamp_inferred": false, @@ -2485,8 +2555,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-177", - "pos": 177, + "id": "ep-podcast-S1E10-182", + "pos": 182, "timestamp": 1439300000000, "duration": 3990000000, "timestamp_inferred": false, @@ -2499,8 +2569,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-178", - "pos": 178, + "id": "ep-podcast-S1E10-183", + "pos": 183, "timestamp": 1443290000000, "duration": 1580000000, "timestamp_inferred": false, @@ -2513,8 +2583,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-179", - "pos": 179, + "id": "ep-podcast-S1E10-184", + "pos": 184, "timestamp": 1444870000000, "duration": 2100000000, "timestamp_inferred": false, @@ -2527,8 +2597,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-180", - "pos": 180, + "id": "ep-podcast-S1E10-185", + "pos": 185, "timestamp": 1446970000000, "duration": 570000000, "timestamp_inferred": false, @@ -2541,8 +2611,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-181", - "pos": 181, + "id": "ep-podcast-S1E10-186", + "pos": 186, "timestamp": 1447540000000, "duration": 5220000000, "timestamp_inferred": false, @@ -2555,8 +2625,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-182", - "pos": 182, + "id": "ep-podcast-S1E10-187", + "pos": 187, "timestamp": 1452760000000, "duration": 460000000, "timestamp_inferred": false, @@ -2569,8 +2639,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-183", - "pos": 183, + "id": "ep-podcast-S1E10-188", + "pos": 188, "timestamp": 1453220000000, "duration": 1840000000, "timestamp_inferred": false, @@ -2583,8 +2653,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-184", - "pos": 184, + "id": "ep-podcast-S1E10-189", + "pos": 189, "timestamp": 1455060000000, "duration": 1610000000, "timestamp_inferred": false, @@ -2597,8 +2667,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-185", - "pos": 185, + "id": "ep-podcast-S1E10-190", + "pos": 190, "timestamp": 1456670000000, "duration": 1120000000, "timestamp_inferred": false, @@ -2611,8 +2681,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-186", - "pos": 186, + "id": "ep-podcast-S1E10-191", + "pos": 191, "timestamp": 1457790000000, "duration": 660000000, "timestamp_inferred": false, @@ -2625,8 +2695,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-187", - "pos": 187, + "id": "ep-podcast-S1E10-192", + "pos": 192, "timestamp": 1458450000000, "duration": 21840000000, "timestamp_inferred": false, @@ -2639,8 +2709,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-188", - "pos": 188, + "id": "ep-podcast-S1E10-193", + "pos": 193, "timestamp": 1480290000000, "duration": 1680000000, "timestamp_inferred": false, @@ -2653,8 +2723,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-189", - "pos": 189, + "id": "ep-podcast-S1E10-194", + "pos": 194, "timestamp": 1481970000000, "duration": 1960000000, "timestamp_inferred": false, @@ -2667,8 +2737,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-190", - "pos": 190, + "id": "ep-podcast-S1E10-195", + "pos": 195, "timestamp": 1483930000000, "duration": 3470000000, "timestamp_inferred": false, @@ -2681,8 +2751,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-191", - "pos": 191, + "id": "ep-podcast-S1E10-196", + "pos": 196, "timestamp": 1487400000000, "duration": 450000000, "timestamp_inferred": false, @@ -2695,8 +2765,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-192", - "pos": 192, + "id": "ep-podcast-S1E10-197", + "pos": 197, "timestamp": 1487850000000, "duration": 2430000000, "timestamp_inferred": false, @@ -2709,8 +2779,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-193", - "pos": 193, + "id": "ep-podcast-S1E10-198", + "pos": 198, "timestamp": 1490280000000, "duration": 2050000000, "timestamp_inferred": false, @@ -2723,8 +2793,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-194", - "pos": 194, + "id": "ep-podcast-S1E10-199", + "pos": 199, "timestamp": 1492330000000, "duration": 8420000000, "timestamp_inferred": false, @@ -2737,8 +2807,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-195", - "pos": 195, + "id": "ep-podcast-S1E10-200", + "pos": 200, "timestamp": 1500750000000, "duration": 5030000000, "timestamp_inferred": false, @@ -2751,8 +2821,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-196", - "pos": 196, + "id": "ep-podcast-S1E10-201", + "pos": 201, "timestamp": 1505780000000, "duration": 10710000000, "timestamp_inferred": false, @@ -2765,8 +2835,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-197", - "pos": 197, + "id": "ep-podcast-S1E10-202", + "pos": 202, "timestamp": 1516490000000, "duration": 580000000, "timestamp_inferred": false, @@ -2779,8 +2849,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-198", - "pos": 198, + "id": "ep-podcast-S1E10-203", + "pos": 203, "timestamp": 1517070000000, "duration": 4140000000, "timestamp_inferred": false, @@ -2793,8 +2863,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-199", - "pos": 199, + "id": "ep-podcast-S1E10-204", + "pos": 204, "timestamp": 1521210000000, "duration": 920000000, "timestamp_inferred": false, @@ -2807,8 +2877,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-200", - "pos": 200, + "id": "ep-podcast-S1E10-205", + "pos": 205, "timestamp": 1522130000000, "duration": 1840000000, "timestamp_inferred": false, @@ -2821,8 +2891,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-201", - "pos": 201, + "id": "ep-podcast-S1E10-206", + "pos": 206, "timestamp": 1523970000000, "duration": 2200000000, "timestamp_inferred": false, @@ -2835,8 +2905,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-202", - "pos": 202, + "id": "ep-podcast-S1E10-207", + "pos": 207, "timestamp": 1526170000000, "duration": 2640000000, "timestamp_inferred": false, @@ -2849,8 +2919,8 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-203", - "pos": 203, + "id": "ep-podcast-S1E10-208", + "pos": 208, "timestamp": 1528810000000, "duration": 9320000000, "timestamp_inferred": false, @@ -2863,317 +2933,473 @@ "placeholder": true }, { - "id": "ep-podcast-S1E10-204", - "pos": 204, + "id": "ep-podcast-S1E10-209", + "pos": 209, "timestamp": 1538130000000, - "duration": 4030000000, + "duration": 2070000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown c", + "actor": "karl", "metadata": null, - "content": "One of the women, I'd like, like you say fruit and what have you on it, a little. Little banana.", + "content": "One of the women, had like, like you say fruit and what have you on it, a little. Little banana.", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-205", - "pos": 205, + "id": "ep-podcast-S1E10-210", + "pos": 210, + "timestamp": 1540200000000, + "duration": 1960000000, + "timestamp_inferred": false, + "timestamp_distance": 0, + "type": "chat", + "actor": "ricky", + "metadata": null, + "content": "Yeah.", + "notable": false, + "placeholder": false + }, + { + "id": "ep-podcast-S1E10-211", + "pos": 211, "timestamp": 1542160000000, "duration": 1190000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown b", + "actor": "steve", "metadata": null, - "content": "Right. Some kind of Cuban real.", + "content": "Right. Some kind of Cuban reel.", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-206", - "pos": 206, + "id": "ep-podcast-S1E10-212", + "pos": 212, "timestamp": 1543350000000, - "duration": 3320000000, + "duration": 1490000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown a", + "actor": "ricky", "metadata": null, - "content": "They're not real, though, the hats, though, they're real fruit, is it?", + "content": "They're not real, though, the hats, though, they're, no they're...", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-207", - "pos": 207, + "id": "ep-podcast-S1E10-213", + "pos": 213, + "timestamp": 1544840000000, + "duration": 610000000, + "timestamp_inferred": false, + "timestamp_distance": 0, + "type": "chat", + "actor": "steve", + "metadata": null, + "content": "They're not real fruit, is it? Yeah.", + "notable": false, + "placeholder": false + }, + { + "id": "ep-podcast-S1E10-214", + "pos": 214, + "timestamp": 1545450000000, + "duration": 1220000000, + "timestamp_inferred": false, + "timestamp_distance": 0, + "type": "chat", + "actor": "ricky", + "metadata": null, + "content": "No, no, of course not. Never", + "notable": false, + "placeholder": false + }, + { + "id": "ep-podcast-S1E10-215", + "pos": 215, "timestamp": 1546670000000, "duration": 3290000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown b", + "actor": "steve", "metadata": null, - "content": "But I don't know who I thought they wore those. Sort of, kind of Cuban.", + "content": "But I don't know who I thought they wore those. Sort of, kind of Cuban. Entertainment shows, I didn't realise they wore them at events.", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-208", - "pos": 208, + "id": "ep-podcast-S1E10-216", + "pos": 216, "timestamp": 1549960000000, "duration": 8750000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown a", + "actor": "ricky", "metadata": null, - "content": "Yeah. It's like a big event. You know, you might have a hat with fruit and it's sort of joke, but it, but it's, it's fake fruit because it would do, it would perish. It will.", + "content": "Yeah. But even if, even if, yeah, but even if it's like a big event. You know, you might have a hat with fruit and it's sort of joke, but it, but it's, it's fake fruit because it would do, it would perish. It would...", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-209", - "pos": 209, + "id": "ep-podcast-S1E10-217", + "pos": 217, "timestamp": 1558710000000, "duration": 3850000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown c", + "actor": "karl", "metadata": null, "content": "This, this jockey didn't understand that he'd never seen false fruit.", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-210", - "pos": 210, + "id": "ep-podcast-S1E10-218", + "pos": 218, "timestamp": 1562560000000, "duration": 920000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown a", + "actor": "ricky", "metadata": null, "content": "I don't understand.", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-211", - "pos": 211, + "id": "ep-podcast-S1E10-219", + "pos": 219, "timestamp": 1563480000000, "duration": 3650000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown b", + "actor": "steve", "metadata": null, - "content": "Why did the, why did the jockey suddenly, why was he so desperate for fruit?", + "content": "But why did, why did the jockey suddenly, why was he so desperate for fruit? I don't understand.", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-212", - "pos": 212, + "id": "ep-podcast-S1E10-220", + "pos": 220, "timestamp": 1567130000000, "duration": 8240000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown c", + "actor": "karl", "metadata": null, "content": "So anyway, so meanwhile, the gangsters collecting his 500 quid winnings, he's over the moon. He kicks off because of this woman with a fruit.", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-213", - "pos": 213, + "id": "ep-podcast-S1E10-221", + "pos": 221, "timestamp": 1575370000000, "duration": 2600000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown a", + "actor": "ricky", "metadata": null, - "content": "Yeah. I don't understand. I still don't understand where the jockey would go.", + "content": "Yeah. I don't understand. I still don't understand why the jockey would go.", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-214", - "pos": 214, + "id": "ep-podcast-S1E10-222", + "pos": 222, "timestamp": 1577970000000, "duration": 2830000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown c", + "actor": "karl", "metadata": null, "content": "Everyone noticed. Jockey, little monkey fella.", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-215", - "pos": 215, + "id": "ep-podcast-S1E10-223", + "pos": 223, "timestamp": 1580800000000, "duration": 3930000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown b", + "actor": "steve", "metadata": null, "content": "Oh, that makes sense. If he was a monkey, that would make sense.", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-216", - "pos": 216, + "id": "ep-podcast-S1E10-224", + "pos": 224, "timestamp": 1584730000000, "duration": 450000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown c", + "actor": "karl", "metadata": null, "content": "Yeah.", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-217", - "pos": 217, + "id": "ep-podcast-S1E10-225", + "pos": 225, "timestamp": 1585180000000, "duration": 950000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown a", + "actor": "ricky", "metadata": null, - "content": "What year was this girl?", + "content": "What year was this? Cause I wanna look this up.", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-218", - "pos": 218, + "id": "ep-podcast-S1E10-226", + "pos": 226, "timestamp": 1586130000000, "duration": 11300000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown c", + "actor": "karl", "metadata": null, - "content": "It was, it was 1950s. And that's where the saying comes from about, you know, like in Cockney slang, 500 quid is a monkey. He sort of put, you know, he put a monkey on it. And it all goes back to the time.", + "content": "It was, it was 1950s. And that's where the saying comes from, about, you know, like in Cockney slang, 500 quid is a monkey. He sort of put, you know, he put a monkey on it. And it all goes back to the time when...", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-219", - "pos": 219, + "id": "ep-podcast-S1E10-227", + "pos": 227, "timestamp": 1597430000000, - "duration": 7090000000, + "duration": 970000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown b", + "actor": "steve", "metadata": null, - "content": "So this happened in this, in England, in this country. So someone could well still be alive that we could easily contact them.", + "content": "So this happened in this, in England.", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-220", - "pos": 220, - "timestamp": 1604520000000, - "duration": 7680000000, + "id": "ep-podcast-S1E10-228", + "pos": 228, + "timestamp": 1598400000000, + "duration": 1290000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown c", + "actor": "karl", "metadata": null, - "content": "There's no time length on this monkey news. If you've got any, if it's history, you know, if it goes back or if it's made up, just send it in.", + "content": "In this country, yeah, in the 1950s.", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-221", - "pos": 221, - "timestamp": 1612200000000, - "duration": 1730000000, + "id": "ep-podcast-S1E10-229", + "pos": 229, + "timestamp": 1599690000000, + "duration": 3830000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown a", + "actor": "steve", "metadata": null, - "content": "If it's actually, please send it in.", + "content": "So someone could well still be alive that we could easily contact them and confirm it cause they were there.", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-222", - "pos": 222, + "id": "ep-podcast-S1E10-230", + "pos": 230, + "timestamp": 1603520000000, + "duration": 4980000000, + "timestamp_inferred": false, + "timestamp_distance": 0, + "type": "chat", + "actor": "karl", + "metadata": null, + "content": "Well, that's it. We always, you know, there's no time length on this monkey news. If you've got any, if it's history, you know, if it goes back, just send it in.", + "notable": false, + "placeholder": false + }, + { + "id": "ep-podcast-S1E10-231", + "pos": 231, + "timestamp": 1608500000000, + "duration": 1440000000, + "timestamp_inferred": false, + "timestamp_distance": 0, + "type": "chat", + "actor": "ricky", + "metadata": null, + "content": "Or if it's made up. Bullshit.", + "notable": false, + "placeholder": false + }, + { + "id": "ep-podcast-S1E10-232", + "pos": 232, + "timestamp": 1609940000000, + "duration": 1060000000, + "timestamp_inferred": false, + "timestamp_distance": 0, + "type": "chat", + "actor": "karl", + "metadata": null, + "content": "Just send it in.", + "notable": false, + "placeholder": false + }, + { + "id": "ep-podcast-S1E10-233", + "pos": 233, + "timestamp": 1611000000000, + "duration": 190000000, + "timestamp_inferred": false, + "timestamp_distance": 0, + "type": "chat", + "actor": "ricky", + "metadata": null, + "content": "Bollocks. If it's absolute bollocks, please send it in.", + "notable": false, + "placeholder": false + }, + { + "id": "ep-podcast-S1E10-234", + "pos": 234, + "timestamp": 1611190000000, + "duration": 2740000000, + "timestamp_inferred": false, + "timestamp_distance": 0, + "type": "chat", + "actor": "steve", + "metadata": null, + "content": "If you've got any bollocks that you want to send in.", + "notable": false, + "placeholder": false + }, + { + "id": "ep-podcast-S1E10-235", + "pos": 235, "timestamp": 1613930000000, "duration": 1000000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown c", + "actor": "karl", "metadata": null, "content": "That's this week's Monkey news.", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-223", - "pos": 223, + "id": "ep-podcast-S1E10-236", + "pos": 236, "timestamp": 1614930000000, - "duration": 33750000000, + "duration": 5560000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown a", + "actor": "ricky", "metadata": null, - "content": "Rickydrvays.com. well, that's the end of the 10th podcast in a series of twelve. Only two more to go. One more hour of the drivel. That is the thoughts of Chairman Pilkington, or Dilkington, as he should now be known. This podcast was brought to you by positive Internet, those great guys at positive Internet host the world's number one podcast. It's goodbye from me, Ricky Gervais, Stephen Merchant.", + "content": "RickyGervais.com.", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-224", - "pos": 224, + "id": "ep-podcast-S1E10-237", + "pos": 237, + "timestamp": 1620490000000, + "duration": 28190000000, + "timestamp_inferred": false, + "timestamp_distance": 0, + "type": "chat", + "actor": "ricky", + "metadata": null, + "content": "Well, that's the end of the 10th podcast in a series of twelve. Only two more to go. One more hour of the uh, the drivel. That is the thoughts of Chairman Pilkington, or Dilkington, as he should now be known. This podcast was brought to you by positive Internet, those great guys at positive Internet host the world's number one podcast. It's goodbye from me, Ricky Gervais, Stephen Merchant.", + "notable": false, + "placeholder": false + }, + { + "id": "ep-podcast-S1E10-238", + "pos": 238, "timestamp": 1648680000000, - "duration": 3440000000, + "duration": 3320000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown b", + "actor": "steve", "metadata": null, - "content": "If you want to get in touch, remember, it's podcast at Ricky gervais.com and.", + "content": "If you want to get in touch, remember, it's podcast@rickygervais.com.", "notable": false, - "placeholder": true + "placeholder": false }, { - "id": "ep-podcast-S1E10-225", - "pos": 225, - "timestamp": 1652120000000, - "duration": 21880000000, + "id": "ep-podcast-S1E10-239", + "pos": 239, + "timestamp": 1652000000000, + "duration": 610000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", - "actor": "unknown a", + "actor": "ricky", "metadata": null, - "content": "Carl Pilkington, the Ricky Gervais show on Guardian unlimited.", + "content": "And Karl Pilkington.", "notable": false, - "placeholder": true + "placeholder": false + }, + { + "id": "ep-podcast-S1E10-240", + "pos": 240, + "timestamp": 1652610000000, + "duration": 1540000000, + "timestamp_inferred": false, + "timestamp_distance": 0, + "type": "chat", + "actor": "karl", + "metadata": null, + "content": "Alright.", + "notable": false, + "placeholder": false + }, + { + "id": "ep-podcast-S1E10-241", + "pos": 241, + "timestamp": 1654150000000, + "duration": 19850000000, + "timestamp_inferred": false, + "timestamp_distance": 0, + "type": "chat", + "actor": "", + "metadata": null, + "content": "The Ricky Gervais show on Guardian unlimited.", + "notable": false, + "placeholder": false } ], "synopsis": null, "contributors": [ - "Rowanator3000" + "Rowanator3000", + "Thanatosinstinct", + "rdxthn" ], "trivia": null, "media": { diff --git a/server/var/data/episodes/ep-xfm-S1E08.json b/server/var/data/episodes/ep-xfm-S1E08.json index 63548c64..1a77a3b1 100644 --- a/server/var/data/episodes/ep-xfm-S1E08.json +++ b/server/var/data/episodes/ep-xfm-S1E08.json @@ -7,7 +7,7 @@ "episode": 8, "name": "", "summary": "", - "version": "0.0.3", + "version": "0.0.4", "release_date": "2002-01-12T00:00:00Z", "incomplete": false, "bestof": false, @@ -7783,7 +7783,7 @@ "id": "ep-xfm-S1E08-552", "pos": 552, "timestamp": 1420760000000, - "duration": 1142000000, + "duration": 1144000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", @@ -7796,8 +7796,8 @@ { "id": "ep-xfm-S1E08-553", "pos": 553, - "timestamp": 1421902000000, - "duration": 2441000000, + "timestamp": 1421904000000, + "duration": 2444000000, "timestamp_inferred": true, "timestamp_distance": 1, "type": "chat", @@ -7810,8 +7810,8 @@ { "id": "ep-xfm-S1E08-554", "pos": 554, - "timestamp": 1424343000000, - "duration": 727000000, + "timestamp": 1424348000000, + "duration": 728000000, "timestamp_inferred": true, "timestamp_distance": 2, "type": "chat", @@ -7824,8 +7824,8 @@ { "id": "ep-xfm-S1E08-555", "pos": 555, - "timestamp": 1425070000000, - "duration": 4934000000, + "timestamp": 1425076000000, + "duration": 4940000000, "timestamp_inferred": true, "timestamp_distance": 3, "type": "chat", @@ -7838,8 +7838,8 @@ { "id": "ep-xfm-S1E08-556", "pos": 556, - "timestamp": 1430004000000, - "duration": 571000000, + "timestamp": 1430016000000, + "duration": 572000000, "timestamp_inferred": true, "timestamp_distance": 4, "type": "chat", @@ -7852,8 +7852,8 @@ { "id": "ep-xfm-S1E08-557", "pos": 557, - "timestamp": 1430575000000, - "duration": 259000000, + "timestamp": 1430588000000, + "duration": 260000000, "timestamp_inferred": true, "timestamp_distance": 5, "type": "chat", @@ -7866,8 +7866,8 @@ { "id": "ep-xfm-S1E08-558", "pos": 558, - "timestamp": 1430834000000, - "duration": 1194000000, + "timestamp": 1430848000000, + "duration": 1196000000, "timestamp_inferred": true, "timestamp_distance": 6, "type": "chat", @@ -7880,22 +7880,22 @@ { "id": "ep-xfm-S1E08-559", "pos": 559, - "timestamp": 1432028000000, - "duration": 3116000000, + "timestamp": 1432044000000, + "duration": 3068000000, "timestamp_inferred": true, "timestamp_distance": 7, "type": "chat", "actor": "karl", "metadata": null, - "content": "…ahm only people with money had drinkin’ or something…", + "content": "…um, only people with money had drink in, or something…", "notable": false, "placeholder": false }, { "id": "ep-xfm-S1E08-560", "pos": 560, - "timestamp": 1435144000000, - "duration": 1090000000, + "timestamp": 1435112000000, + "duration": 1092000000, "timestamp_inferred": true, "timestamp_distance": 8, "type": "chat", @@ -7908,8 +7908,8 @@ { "id": "ep-xfm-S1E08-561", "pos": 561, - "timestamp": 1436234000000, - "duration": 8154000000, + "timestamp": 1436204000000, + "duration": 8165000000, "timestamp_inferred": true, "timestamp_distance": 9, "type": "chat", @@ -7922,8 +7922,8 @@ { "id": "ep-xfm-S1E08-562", "pos": 562, - "timestamp": 1444388000000, - "duration": 882000000, + "timestamp": 1444369000000, + "duration": 884000000, "timestamp_inferred": true, "timestamp_distance": 10, "type": "chat", @@ -7936,8 +7936,8 @@ { "id": "ep-xfm-S1E08-563", "pos": 563, - "timestamp": 1445270000000, - "duration": 571000000, + "timestamp": 1445253000000, + "duration": 572000000, "timestamp_inferred": true, "timestamp_distance": 11, "type": "chat", @@ -7950,8 +7950,8 @@ { "id": "ep-xfm-S1E08-564", "pos": 564, - "timestamp": 1445841000000, - "duration": 5921000000, + "timestamp": 1445825000000, + "duration": 5928000000, "timestamp_inferred": true, "timestamp_distance": 12, "type": "chat", @@ -7964,8 +7964,8 @@ { "id": "ep-xfm-S1E08-565", "pos": 565, - "timestamp": 1451762000000, - "duration": 623000000, + "timestamp": 1451753000000, + "duration": 624000000, "timestamp_inferred": true, "timestamp_distance": 13, "type": "chat", @@ -7978,8 +7978,8 @@ { "id": "ep-xfm-S1E08-566", "pos": 566, - "timestamp": 1452385000000, - "duration": 1506000000, + "timestamp": 1452377000000, + "duration": 1508000000, "timestamp_inferred": true, "timestamp_distance": 14, "type": "chat", @@ -7992,8 +7992,8 @@ { "id": "ep-xfm-S1E08-567", "pos": 567, - "timestamp": 1453891000000, - "duration": 1038000000, + "timestamp": 1453885000000, + "duration": 1040000000, "timestamp_inferred": true, "timestamp_distance": 15, "type": "chat", @@ -8006,8 +8006,8 @@ { "id": "ep-xfm-S1E08-568", "pos": 568, - "timestamp": 1454929000000, - "duration": 1817000000, + "timestamp": 1454925000000, + "duration": 1820000000, "timestamp_inferred": true, "timestamp_distance": 16, "type": "chat", @@ -8020,8 +8020,8 @@ { "id": "ep-xfm-S1E08-569", "pos": 569, - "timestamp": 1456746000000, - "duration": 831000000, + "timestamp": 1456745000000, + "duration": 832000000, "timestamp_inferred": true, "timestamp_distance": 17, "type": "chat", @@ -8035,7 +8035,7 @@ "id": "ep-xfm-S1E08-570", "pos": 570, "timestamp": 1457577000000, - "duration": 623000000, + "duration": 624000000, "timestamp_inferred": true, "timestamp_distance": 18, "type": "chat", @@ -8048,8 +8048,8 @@ { "id": "ep-xfm-S1E08-571", "pos": 571, - "timestamp": 1458200000000, - "duration": 571000000, + "timestamp": 1458201000000, + "duration": 572000000, "timestamp_inferred": true, "timestamp_distance": 19, "type": "chat", @@ -8062,8 +8062,8 @@ { "id": "ep-xfm-S1E08-572", "pos": 572, - "timestamp": 1458771000000, - "duration": 1765000000, + "timestamp": 1458773000000, + "duration": 1768000000, "timestamp_inferred": true, "timestamp_distance": 20, "type": "chat", @@ -8076,8 +8076,8 @@ { "id": "ep-xfm-S1E08-573", "pos": 573, - "timestamp": 1460536000000, - "duration": 634000000, + "timestamp": 1460541000000, + "duration": 629000000, "timestamp_inferred": true, "timestamp_distance": 21, "type": "chat", @@ -14578,7 +14578,7 @@ "end_pos": 487 }, { - "description": "Ages ago only people with money had drinking or something.", + "description": "Karl explains why people tink the glasses", "start_pos": 555, "end_pos": 601 }, @@ -14614,6 +14614,7 @@ } ], "contributors": [ + "MonotoneCreeper", "bathabit", "wagu666", "warmans" @@ -14624,6 +14625,11 @@ "start_pos": 120, "end_pos": 121 }, + { + "description": "There is some dispute over if Karl says \"drink in\" or \"drinking\" since both work in context. However most believe \"drink in\" is more likely.", + "start_pos": 559, + "end_pos": 560 + }, { "description": "The performance: https://www.youtube.com/watch?v=ABjYSxyUD98", "start_pos": 832, diff --git a/server/var/data/episodes/ep-xfm-S1E16.json b/server/var/data/episodes/ep-xfm-S1E16.json index b45ef6c9..a9182ed7 100644 --- a/server/var/data/episodes/ep-xfm-S1E16.json +++ b/server/var/data/episodes/ep-xfm-S1E16.json @@ -7,7 +7,7 @@ "episode": 16, "name": "", "summary": "", - "version": "1.0.0", + "version": "1.0.1", "release_date": "2002-03-16T00:00:00Z", "incomplete": false, "bestof": false, @@ -2755,21 +2755,21 @@ "id": "ep-xfm-S1E16-195", "pos": 195, "timestamp": 485000000000, - "duration": 12298000000, + "duration": 12295000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", "actor": "ricky", "metadata": null, - "content": "But anyway, then he went, Oh, thank you God for this, and, uh, and help those, who walk alone. And Ash went, \"What about those that don’t walk at all?\" He said, \"I’ve never been- I’ve never been left out of grace before!\"", + "content": "But anyway, then he went, Oh, thank you God for this, and, uh, and help those, who walk alone. And Ash went, \"What about those that don’t walk at all?\" He said, \"I’ve never been- I’ve never been left out of grace before!\"", "notable": false, "placeholder": false }, { "id": "ep-xfm-S1E16-196", "pos": 196, - "timestamp": 497298000000, - "duration": 702000000, + "timestamp": 497295000000, + "duration": 705000000, "timestamp_inferred": true, "timestamp_distance": 1, "type": "chat", @@ -9860,7 +9860,7 @@ "type": "chat", "actor": "steve", "metadata": null, - "content": "So you were playing Dead Arms while she was off dancing and getting her dress ruined.", + "content": "So you were playing Dead Arms while she was off dancing and getting her hole ruined.", "notable": false, "placeholder": false }, @@ -16770,7 +16770,8 @@ } ], "contributors": [ - "MonotoneCreeper" + "MonotoneCreeper", + "bald_manc" ], "trivia": [ { diff --git a/server/var/data/episodes/ep-xfm-S1E18.json b/server/var/data/episodes/ep-xfm-S1E18.json index 4ad9b31f..c0a4ee41 100644 --- a/server/var/data/episodes/ep-xfm-S1E18.json +++ b/server/var/data/episodes/ep-xfm-S1E18.json @@ -7,13 +7,13 @@ "episode": 18, "name": "", "summary": "", - "version": "0.0.3", + "version": "0.0.4", "release_date": "2002-03-30T00:00:00Z", "incomplete": false, "bestof": false, "special": false, "locked": false, - "offset_accuracy": 25, + "offset_accuracy": 26, "audio_quality": "", "metadata": { "bitrate_kbps": "128.00", @@ -3403,7 +3403,7 @@ "id": "ep-xfm-S1E18-240", "pos": 240, "timestamp": 702290000000, - "duration": 254000000, + "duration": 1640000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", @@ -3416,24 +3416,24 @@ { "id": "ep-xfm-S1E18-241", "pos": 241, - "timestamp": 702544000000, - "duration": 1358000000, - "timestamp_inferred": true, - "timestamp_distance": 1, + "timestamp": 703930000000, + "duration": 5510000000, + "timestamp_inferred": false, + "timestamp_distance": 0, "type": "chat", "actor": "steve", "metadata": null, - "content": "Well absolutely. Now obviously Karl went out with me last night, and he saw that I'm, well you know, he's knows that I'm a ladies man and that was obvious Karl. You could see vibe around me couldn't you?", + "content": "Well absolutely. Well obviously Karl went out with me last night, and he saw that I'm, well you know, he's knows that I'm a ladies man and that was obvious Karl. You could see vibe around me couldn't you?", "notable": false, "placeholder": false }, { "id": "ep-xfm-S1E18-242", "pos": 242, - "timestamp": 703902000000, - "duration": 28000000, - "timestamp_inferred": true, - "timestamp_distance": 2, + "timestamp": 709440000000, + "duration": 148000000, + "timestamp_inferred": false, + "timestamp_distance": 0, "type": "chat", "actor": "karl", "metadata": null, @@ -3444,10 +3444,10 @@ { "id": "ep-xfm-S1E18-243", "pos": 243, - "timestamp": 703930000000, - "duration": 50466000000, - "timestamp_inferred": false, - "timestamp_distance": 0, + "timestamp": 709588000000, + "duration": 49082000000, + "timestamp_inferred": true, + "timestamp_distance": 1, "type": "chat", "actor": "steve", "metadata": null, @@ -3458,10 +3458,10 @@ { "id": "ep-xfm-S1E18-244", "pos": 244, - "timestamp": 754396000000, - "duration": 723000000, - "timestamp_inferred": true, - "timestamp_distance": 1, + "timestamp": 758670000000, + "duration": 510000000, + "timestamp_inferred": false, + "timestamp_distance": 0, "type": "chat", "actor": "ricky", "metadata": null, @@ -3472,24 +3472,24 @@ { "id": "ep-xfm-S1E18-245", "pos": 245, - "timestamp": 755119000000, - "duration": 21024000000, - "timestamp_inferred": true, - "timestamp_distance": 2, + "timestamp": 759180000000, + "duration": 20440000000, + "timestamp_inferred": false, + "timestamp_distance": 0, "type": "chat", "actor": "steve", "metadata": null, - "content": "The foot high club, brilliant. And er, so I'm excited, you know I'm listening in. And er, they're talking and it turns out that they're both kind of graduates, both just finished university, or they're just, just coming to their finals or something. And they're chatting away you know, and he's making a couple of witticisms, you know, and she's kind of tittering at his jokes. I'm thinking well I'll tell you this, if she's laughing at his kind of material, I am going to blow her away you know with my kind of anecdotes and wry observations you know.", + "content": "The foot high club, brilliant. And er, so I'm excited, you know I'm listening in. And er, they're talking and it turns out that they're both kind of graduates, both just finished university, or they're just, just coming to their finals or something. And they're chatting away you know, and he's making a couple of witticisms, you know, and she's kind of tittering at his jokes. I'm thinking well I'll tell you this, if she's laughing at this kind of material, I am going to blow her away you know with my kind of anecdotes and wry observations you know.", "notable": false, "placeholder": false }, { "id": "ep-xfm-S1E18-246", "pos": 246, - "timestamp": 776143000000, - "duration": 457000000, - "timestamp_inferred": true, - "timestamp_distance": 3, + "timestamp": 779620000000, + "duration": -28000000, + "timestamp_inferred": false, + "timestamp_distance": 0, "type": "chat", "actor": "", "metadata": null, @@ -3500,10 +3500,10 @@ { "id": "ep-xfm-S1E18-247", "pos": 247, - "timestamp": 776600000000, - "duration": 190000000, + "timestamp": 779592000000, + "duration": -12000000, "timestamp_inferred": true, - "timestamp_distance": 4, + "timestamp_distance": 1, "type": "chat", "actor": "ricky", "metadata": null, @@ -3514,10 +3514,10 @@ { "id": "ep-xfm-S1E18-248", "pos": 248, - "timestamp": 776790000000, - "duration": 1409000000, - "timestamp_inferred": true, - "timestamp_distance": 5, + "timestamp": 779580000000, + "duration": 1550000000, + "timestamp_inferred": false, + "timestamp_distance": 0, "type": "chat", "actor": "steve", "metadata": null, @@ -3528,10 +3528,10 @@ { "id": "ep-xfm-S1E18-249", "pos": 249, - "timestamp": 778199000000, - "duration": 266000000, - "timestamp_inferred": true, - "timestamp_distance": 6, + "timestamp": 781130000000, + "duration": 261000000, + "timestamp_inferred": false, + "timestamp_distance": 0, "type": "chat", "actor": "ricky", "metadata": null, @@ -3542,10 +3542,10 @@ { "id": "ep-xfm-S1E18-250", "pos": 250, - "timestamp": 778465000000, - "duration": 1180000000, + "timestamp": 781391000000, + "duration": 1158000000, "timestamp_inferred": true, - "timestamp_distance": 7, + "timestamp_distance": 1, "type": "chat", "actor": "steve", "metadata": null, @@ -3556,10 +3556,10 @@ { "id": "ep-xfm-S1E18-251", "pos": 251, - "timestamp": 779645000000, - "duration": 152000000, + "timestamp": 782549000000, + "duration": 151000000, "timestamp_inferred": true, - "timestamp_distance": 8, + "timestamp_distance": 2, "type": "chat", "actor": "ricky", "metadata": null, @@ -3570,10 +3570,10 @@ { "id": "ep-xfm-S1E18-252", "pos": 252, - "timestamp": 779797000000, - "duration": 1828000000, - "timestamp_inferred": true, - "timestamp_distance": 9, + "timestamp": 782700000000, + "duration": -796000000, + "timestamp_inferred": false, + "timestamp_distance": 0, "type": "chat", "actor": "steve", "metadata": null, @@ -3584,10 +3584,10 @@ { "id": "ep-xfm-S1E18-253", "pos": 253, - "timestamp": 781625000000, - "duration": 195000000, + "timestamp": 781904000000, + "duration": -84000000, "timestamp_inferred": true, - "timestamp_distance": 10, + "timestamp_distance": 1, "type": "chat", "actor": "ricky", "metadata": null, @@ -3599,23 +3599,23 @@ "id": "ep-xfm-S1E18-254", "pos": 254, "timestamp": 781820000000, - "duration": 15751000000, + "duration": 17800000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", "actor": "steve", "metadata": null, - "content": "And she was loving it, so I'm thinking brilliant I'm going to be right in here, and then they get moving onto higher brow things, you know and erm. I think she was gonna study like Marxism or something like that, and, or communism or something, and err she was asking him you know, by way of conversation, she was asking him what he knew about Marxism you know.", + "content": "And she was loving it, so I'm thinking brilliant I'm going to be right in here, and then they get moving onto higher brow things, you know and erm. I think she was gonna study kind of Marxism or something like that, and, or communism or something, and err she was asking him you know, by way of conversation, she was asking him what he knew about Marxism you know.", "notable": false, "placeholder": false }, { "id": "ep-xfm-S1E18-255", "pos": 255, - "timestamp": 797571000000, - "duration": 261000000, - "timestamp_inferred": true, - "timestamp_distance": 1, + "timestamp": 799620000000, + "duration": 220000000, + "timestamp_inferred": false, + "timestamp_distance": 0, "type": "chat", "actor": "ricky", "metadata": null, @@ -3626,10 +3626,10 @@ { "id": "ep-xfm-S1E18-256", "pos": 256, - "timestamp": 797832000000, - "duration": 3490000000, - "timestamp_inferred": true, - "timestamp_distance": 2, + "timestamp": 799840000000, + "duration": 3727000000, + "timestamp_inferred": false, + "timestamp_distance": 0, "type": "chat", "actor": "steve", "metadata": null, @@ -3640,10 +3640,10 @@ { "id": "ep-xfm-S1E18-257", "pos": 257, - "timestamp": 801322000000, - "duration": 218000000, + "timestamp": 803567000000, + "duration": 233000000, "timestamp_inferred": true, - "timestamp_distance": 3, + "timestamp_distance": 1, "type": "chat", "actor": "ricky", "metadata": null, @@ -3654,48 +3654,20 @@ { "id": "ep-xfm-S1E18-258", "pos": 258, - "timestamp": 801540000000, - "duration": 6196000000, - "timestamp_inferred": true, - "timestamp_distance": 4, + "timestamp": 803800000000, + "duration": 9960000000, + "timestamp_inferred": false, + "timestamp_distance": 0, "type": "chat", "actor": "steve", "metadata": null, - "content": "But I'm just sat there thinking \"yeah come on love, in any given capitalist environment the proletariat will revolt against the repression...\"", + "content": "But I'm just sat there thinking \"yeah, come on love, in any given capitalist environment the proletariat will revolt against the repression of the bourgeoisie, and after a brief period of socialist rule emerges a classless society governed by community cooperation.\"", "notable": true, "placeholder": false }, { "id": "ep-xfm-S1E18-259", "pos": 259, - "timestamp": 807736000000, - "duration": 218000000, - "timestamp_inferred": true, - "timestamp_distance": 5, - "type": "chat", - "actor": "ricky", - "metadata": null, - "content": "Well.", - "notable": false, - "placeholder": false - }, - { - "id": "ep-xfm-S1E18-260", - "pos": 260, - "timestamp": 807954000000, - "duration": 5806000000, - "timestamp_inferred": true, - "timestamp_distance": 6, - "type": "chat", - "actor": "steve", - "metadata": null, - "content": "\"...of the bourgeoisie, after a brief period of socialist rule emerges in a classless society governed by the community corporation.\"", - "notable": false, - "placeholder": false - }, - { - "id": "ep-xfm-S1E18-261", - "pos": 261, "timestamp": 813760000000, "duration": 2183000000, "timestamp_inferred": false, @@ -3708,8 +3680,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-262", - "pos": 262, + "id": "ep-xfm-S1E18-260", + "pos": 260, "timestamp": 815943000000, "duration": 436000000, "timestamp_inferred": true, @@ -3722,8 +3694,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-263", - "pos": 263, + "id": "ep-xfm-S1E18-261", + "pos": 261, "timestamp": 816379000000, "duration": 1211000000, "timestamp_inferred": true, @@ -3736,8 +3708,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-264", - "pos": 264, + "id": "ep-xfm-S1E18-262", + "pos": 262, "timestamp": 817590000000, "duration": 2428000000, "timestamp_inferred": false, @@ -3750,8 +3722,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-265", - "pos": 265, + "id": "ep-xfm-S1E18-263", + "pos": 263, "timestamp": 820018000000, "duration": 274000000, "timestamp_inferred": true, @@ -3764,8 +3736,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-266", - "pos": 266, + "id": "ep-xfm-S1E18-264", + "pos": 264, "timestamp": 820292000000, "duration": 2038000000, "timestamp_inferred": true, @@ -3778,8 +3750,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-267", - "pos": 267, + "id": "ep-xfm-S1E18-265", + "pos": 265, "timestamp": 822330000000, "duration": 2425000000, "timestamp_inferred": false, @@ -3792,8 +3764,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-268", - "pos": 268, + "id": "ep-xfm-S1E18-266", + "pos": 266, "timestamp": 824755000000, "duration": 539000000, "timestamp_inferred": true, @@ -3806,8 +3778,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-269", - "pos": 269, + "id": "ep-xfm-S1E18-267", + "pos": 267, "timestamp": 825294000000, "duration": 1146000000, "timestamp_inferred": true, @@ -3820,8 +3792,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-270", - "pos": 270, + "id": "ep-xfm-S1E18-268", + "pos": 268, "timestamp": 826440000000, "duration": 14812000000, "timestamp_inferred": false, @@ -3834,8 +3806,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-271", - "pos": 271, + "id": "ep-xfm-S1E18-269", + "pos": 269, "timestamp": 841252000000, "duration": 121000000, "timestamp_inferred": true, @@ -3848,8 +3820,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-272", - "pos": 272, + "id": "ep-xfm-S1E18-270", + "pos": 270, "timestamp": 841373000000, "duration": 5529000000, "timestamp_inferred": true, @@ -3862,8 +3834,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-273", - "pos": 273, + "id": "ep-xfm-S1E18-271", + "pos": 271, "timestamp": 846902000000, "duration": 201000000, "timestamp_inferred": true, @@ -3876,8 +3848,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-274", - "pos": 274, + "id": "ep-xfm-S1E18-272", + "pos": 272, "timestamp": 847103000000, "duration": 5004000000, "timestamp_inferred": true, @@ -3890,8 +3862,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-275", - "pos": 275, + "id": "ep-xfm-S1E18-273", + "pos": 273, "timestamp": 852107000000, "duration": 201000000, "timestamp_inferred": true, @@ -3904,8 +3876,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-276", - "pos": 276, + "id": "ep-xfm-S1E18-274", + "pos": 274, "timestamp": 852308000000, "duration": 26961000000, "timestamp_inferred": true, @@ -3918,8 +3890,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-277", - "pos": 277, + "id": "ep-xfm-S1E18-275", + "pos": 275, "timestamp": 879269000000, "duration": 484000000, "timestamp_inferred": true, @@ -3932,8 +3904,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-278", - "pos": 278, + "id": "ep-xfm-S1E18-276", + "pos": 276, "timestamp": 879753000000, "duration": 12915000000, "timestamp_inferred": true, @@ -3946,8 +3918,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-279", - "pos": 279, + "id": "ep-xfm-S1E18-277", + "pos": 277, "timestamp": 892668000000, "duration": 484000000, "timestamp_inferred": true, @@ -3960,8 +3932,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-280", - "pos": 280, + "id": "ep-xfm-S1E18-278", + "pos": 278, "timestamp": 893152000000, "duration": 14933000000, "timestamp_inferred": true, @@ -3974,8 +3946,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-281", - "pos": 281, + "id": "ep-xfm-S1E18-279", + "pos": 279, "timestamp": 908085000000, "duration": 484000000, "timestamp_inferred": true, @@ -3988,8 +3960,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-282", - "pos": 282, + "id": "ep-xfm-S1E18-280", + "pos": 280, "timestamp": 908569000000, "duration": 1896000000, "timestamp_inferred": true, @@ -4002,8 +3974,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-283", - "pos": 283, + "id": "ep-xfm-S1E18-281", + "pos": 281, "timestamp": 910465000000, "duration": 855000000, "timestamp_inferred": true, @@ -4016,8 +3988,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-284", - "pos": 284, + "id": "ep-xfm-S1E18-282", + "pos": 282, "timestamp": 911320000000, "duration": 1042000000, "timestamp_inferred": false, @@ -4030,8 +4002,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-285", - "pos": 285, + "id": "ep-xfm-S1E18-283", + "pos": 283, "timestamp": 912362000000, "duration": 1146000000, "timestamp_inferred": true, @@ -4044,8 +4016,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-286", - "pos": 286, + "id": "ep-xfm-S1E18-284", + "pos": 284, "timestamp": 913508000000, "duration": 1162000000, "timestamp_inferred": true, @@ -4058,8 +4030,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-287", - "pos": 287, + "id": "ep-xfm-S1E18-285", + "pos": 285, "timestamp": 914670000000, "duration": 10310000000, "timestamp_inferred": false, @@ -4072,8 +4044,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-288", - "pos": 288, + "id": "ep-xfm-S1E18-286", + "pos": 286, "timestamp": 924980000000, "duration": 1566000000, "timestamp_inferred": true, @@ -4086,8 +4058,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-289", - "pos": 289, + "id": "ep-xfm-S1E18-287", + "pos": 287, "timestamp": 926546000000, "duration": 1364000000, "timestamp_inferred": true, @@ -4100,8 +4072,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-290", - "pos": 290, + "id": "ep-xfm-S1E18-288", + "pos": 288, "timestamp": 927910000000, "duration": 2630000000, "timestamp_inferred": true, @@ -4114,8 +4086,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-291", - "pos": 291, + "id": "ep-xfm-S1E18-289", + "pos": 289, "timestamp": 930540000000, "duration": 2355000000, "timestamp_inferred": false, @@ -4128,8 +4100,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-292", - "pos": 292, + "id": "ep-xfm-S1E18-290", + "pos": 290, "timestamp": 932895000000, "duration": 1050000000, "timestamp_inferred": true, @@ -4142,8 +4114,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-293", - "pos": 293, + "id": "ep-xfm-S1E18-291", + "pos": 291, "timestamp": 933945000000, "duration": 833000000, "timestamp_inferred": true, @@ -4156,8 +4128,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-294", - "pos": 294, + "id": "ep-xfm-S1E18-292", + "pos": 292, "timestamp": 934778000000, "duration": 0, "timestamp_inferred": true, @@ -4176,8 +4148,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-295", - "pos": 295, + "id": "ep-xfm-S1E18-293", + "pos": 293, "timestamp": 934778000000, "duration": 2000000, "timestamp_inferred": true, @@ -4196,8 +4168,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-296", - "pos": 296, + "id": "ep-xfm-S1E18-294", + "pos": 294, "timestamp": 934780000000, "duration": 20580000000, "timestamp_inferred": false, @@ -4210,8 +4182,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-297", - "pos": 297, + "id": "ep-xfm-S1E18-295", + "pos": 295, "timestamp": 955360000000, "duration": 1440000000, "timestamp_inferred": false, @@ -4224,8 +4196,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-298", - "pos": 298, + "id": "ep-xfm-S1E18-296", + "pos": 296, "timestamp": 956800000000, "duration": 4545000000, "timestamp_inferred": false, @@ -4238,8 +4210,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-299", - "pos": 299, + "id": "ep-xfm-S1E18-297", + "pos": 297, "timestamp": 961345000000, "duration": 581000000, "timestamp_inferred": true, @@ -4252,8 +4224,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-300", - "pos": 300, + "id": "ep-xfm-S1E18-298", + "pos": 298, "timestamp": 961926000000, "duration": 3012000000, "timestamp_inferred": true, @@ -4266,8 +4238,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-301", - "pos": 301, + "id": "ep-xfm-S1E18-299", + "pos": 299, "timestamp": 964938000000, "duration": 2222000000, "timestamp_inferred": true, @@ -4280,8 +4252,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-302", - "pos": 302, + "id": "ep-xfm-S1E18-300", + "pos": 300, "timestamp": 967160000000, "duration": 7725000000, "timestamp_inferred": false, @@ -4294,8 +4266,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-303", - "pos": 303, + "id": "ep-xfm-S1E18-301", + "pos": 301, "timestamp": 974885000000, "duration": 1337000000, "timestamp_inferred": true, @@ -4308,8 +4280,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-304", - "pos": 304, + "id": "ep-xfm-S1E18-302", + "pos": 302, "timestamp": 976222000000, "duration": 1338000000, "timestamp_inferred": true, @@ -4322,8 +4294,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-305", - "pos": 305, + "id": "ep-xfm-S1E18-303", + "pos": 303, "timestamp": 977560000000, "duration": 2806000000, "timestamp_inferred": false, @@ -4336,8 +4308,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-306", - "pos": 306, + "id": "ep-xfm-S1E18-304", + "pos": 304, "timestamp": 980366000000, "duration": 85000000, "timestamp_inferred": true, @@ -4350,8 +4322,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-307", - "pos": 307, + "id": "ep-xfm-S1E18-305", + "pos": 305, "timestamp": 980451000000, "duration": 1719000000, "timestamp_inferred": true, @@ -4364,8 +4336,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-308", - "pos": 308, + "id": "ep-xfm-S1E18-306", + "pos": 306, "timestamp": 982170000000, "duration": 12949000000, "timestamp_inferred": false, @@ -4378,8 +4350,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-309", - "pos": 309, + "id": "ep-xfm-S1E18-307", + "pos": 307, "timestamp": 995119000000, "duration": 196000000, "timestamp_inferred": true, @@ -4392,8 +4364,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-310", - "pos": 310, + "id": "ep-xfm-S1E18-308", + "pos": 308, "timestamp": 995315000000, "duration": 16297000000, "timestamp_inferred": true, @@ -4406,8 +4378,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-311", - "pos": 311, + "id": "ep-xfm-S1E18-309", + "pos": 309, "timestamp": 1011612000000, "duration": 640000000, "timestamp_inferred": true, @@ -4420,8 +4392,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-312", - "pos": 312, + "id": "ep-xfm-S1E18-310", + "pos": 310, "timestamp": 1012252000000, "duration": 938000000, "timestamp_inferred": true, @@ -4434,8 +4406,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-313", - "pos": 313, + "id": "ep-xfm-S1E18-311", + "pos": 311, "timestamp": 1013190000000, "duration": 1250000000, "timestamp_inferred": false, @@ -4448,8 +4420,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-314", - "pos": 314, + "id": "ep-xfm-S1E18-312", + "pos": 312, "timestamp": 1014440000000, "duration": 19814000000, "timestamp_inferred": false, @@ -4462,8 +4434,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-315", - "pos": 315, + "id": "ep-xfm-S1E18-313", + "pos": 313, "timestamp": 1034254000000, "duration": 1986000000, "timestamp_inferred": true, @@ -4476,8 +4448,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-316", - "pos": 316, + "id": "ep-xfm-S1E18-314", + "pos": 314, "timestamp": 1036240000000, "duration": 14160000000, "timestamp_inferred": false, @@ -4490,8 +4462,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-317", - "pos": 317, + "id": "ep-xfm-S1E18-315", + "pos": 315, "timestamp": 1050400000000, "duration": 1211000000, "timestamp_inferred": false, @@ -4504,8 +4476,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-318", - "pos": 318, + "id": "ep-xfm-S1E18-316", + "pos": 316, "timestamp": 1051611000000, "duration": 1530000000, "timestamp_inferred": true, @@ -4518,8 +4490,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-319", - "pos": 319, + "id": "ep-xfm-S1E18-317", + "pos": 317, "timestamp": 1053141000000, "duration": 1211000000, "timestamp_inferred": true, @@ -4532,8 +4504,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-320", - "pos": 320, + "id": "ep-xfm-S1E18-318", + "pos": 318, "timestamp": 1054352000000, "duration": 2932000000, "timestamp_inferred": true, @@ -4546,8 +4518,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-321", - "pos": 321, + "id": "ep-xfm-S1E18-319", + "pos": 319, "timestamp": 1057284000000, "duration": 382000000, "timestamp_inferred": true, @@ -4560,8 +4532,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-322", - "pos": 322, + "id": "ep-xfm-S1E18-320", + "pos": 320, "timestamp": 1057666000000, "duration": 3314000000, "timestamp_inferred": true, @@ -4574,8 +4546,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-323", - "pos": 323, + "id": "ep-xfm-S1E18-321", + "pos": 321, "timestamp": 1060980000000, "duration": 382000000, "timestamp_inferred": true, @@ -4588,8 +4560,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-324", - "pos": 324, + "id": "ep-xfm-S1E18-322", + "pos": 322, "timestamp": 1061362000000, "duration": 768000000, "timestamp_inferred": true, @@ -4602,8 +4574,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-325", - "pos": 325, + "id": "ep-xfm-S1E18-323", + "pos": 323, "timestamp": 1062130000000, "duration": 3158000000, "timestamp_inferred": false, @@ -4616,8 +4588,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-326", - "pos": 326, + "id": "ep-xfm-S1E18-324", + "pos": 324, "timestamp": 1065288000000, "duration": 1849000000, "timestamp_inferred": true, @@ -4630,8 +4602,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-327", - "pos": 327, + "id": "ep-xfm-S1E18-325", + "pos": 325, "timestamp": 1067137000000, "duration": 9014000000, "timestamp_inferred": true, @@ -4644,8 +4616,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-328", - "pos": 328, + "id": "ep-xfm-S1E18-326", + "pos": 326, "timestamp": 1076151000000, "duration": 0, "timestamp_inferred": true, @@ -4664,8 +4636,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-329", - "pos": 329, + "id": "ep-xfm-S1E18-327", + "pos": 327, "timestamp": 1076151000000, "duration": 12789000000, "timestamp_inferred": true, @@ -4678,8 +4650,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-330", - "pos": 330, + "id": "ep-xfm-S1E18-328", + "pos": 328, "timestamp": 1088940000000, "duration": 2157000000, "timestamp_inferred": true, @@ -4692,8 +4664,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-331", - "pos": 331, + "id": "ep-xfm-S1E18-329", + "pos": 329, "timestamp": 1091097000000, "duration": 8089000000, "timestamp_inferred": true, @@ -4706,8 +4678,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-332", - "pos": 332, + "id": "ep-xfm-S1E18-330", + "pos": 330, "timestamp": 1099186000000, "duration": 1078000000, "timestamp_inferred": true, @@ -4720,8 +4692,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-333", - "pos": 333, + "id": "ep-xfm-S1E18-331", + "pos": 331, "timestamp": 1100264000000, "duration": 308000000, "timestamp_inferred": true, @@ -4734,8 +4706,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-334", - "pos": 334, + "id": "ep-xfm-S1E18-332", + "pos": 332, "timestamp": 1100572000000, "duration": 1078000000, "timestamp_inferred": true, @@ -4748,8 +4720,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-335", - "pos": 335, + "id": "ep-xfm-S1E18-333", + "pos": 333, "timestamp": 1101650000000, "duration": 2773000000, "timestamp_inferred": true, @@ -4762,8 +4734,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-336", - "pos": 336, + "id": "ep-xfm-S1E18-334", + "pos": 334, "timestamp": 1104423000000, "duration": 1695000000, "timestamp_inferred": true, @@ -4776,8 +4748,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-337", - "pos": 337, + "id": "ep-xfm-S1E18-335", + "pos": 335, "timestamp": 1106118000000, "duration": 4006000000, "timestamp_inferred": true, @@ -4790,8 +4762,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-338", - "pos": 338, + "id": "ep-xfm-S1E18-336", + "pos": 336, "timestamp": 1110124000000, "duration": 924000000, "timestamp_inferred": true, @@ -4804,8 +4776,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-339", - "pos": 339, + "id": "ep-xfm-S1E18-337", + "pos": 337, "timestamp": 1111048000000, "duration": 392000000, "timestamp_inferred": true, @@ -4818,8 +4790,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-340", - "pos": 340, + "id": "ep-xfm-S1E18-338", + "pos": 338, "timestamp": 1111440000000, "duration": 3512000000, "timestamp_inferred": false, @@ -4832,8 +4804,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-341", - "pos": 341, + "id": "ep-xfm-S1E18-339", + "pos": 339, "timestamp": 1114952000000, "duration": 248000000, "timestamp_inferred": true, @@ -4846,8 +4818,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-342", - "pos": 342, + "id": "ep-xfm-S1E18-340", + "pos": 340, "timestamp": 1115200000000, "duration": 6014000000, "timestamp_inferred": false, @@ -4860,8 +4832,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-343", - "pos": 343, + "id": "ep-xfm-S1E18-341", + "pos": 341, "timestamp": 1121214000000, "duration": 261000000, "timestamp_inferred": true, @@ -4874,8 +4846,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-344", - "pos": 344, + "id": "ep-xfm-S1E18-342", + "pos": 342, "timestamp": 1121475000000, "duration": 4183000000, "timestamp_inferred": true, @@ -4888,8 +4860,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-345", - "pos": 345, + "id": "ep-xfm-S1E18-343", + "pos": 343, "timestamp": 1125658000000, "duration": 2614000000, "timestamp_inferred": true, @@ -4902,8 +4874,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-346", - "pos": 346, + "id": "ep-xfm-S1E18-344", + "pos": 344, "timestamp": 1128272000000, "duration": 438000000, "timestamp_inferred": true, @@ -4916,8 +4888,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-347", - "pos": 347, + "id": "ep-xfm-S1E18-345", + "pos": 345, "timestamp": 1128710000000, "duration": 1991000000, "timestamp_inferred": false, @@ -4930,8 +4902,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-348", - "pos": 348, + "id": "ep-xfm-S1E18-346", + "pos": 346, "timestamp": 1130701000000, "duration": 331000000, "timestamp_inferred": true, @@ -4944,8 +4916,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-349", - "pos": 349, + "id": "ep-xfm-S1E18-347", + "pos": 347, "timestamp": 1131032000000, "duration": 1218000000, "timestamp_inferred": true, @@ -4958,8 +4930,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-350", - "pos": 350, + "id": "ep-xfm-S1E18-348", + "pos": 348, "timestamp": 1132250000000, "duration": 2993000000, "timestamp_inferred": false, @@ -4972,8 +4944,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-351", - "pos": 351, + "id": "ep-xfm-S1E18-349", + "pos": 349, "timestamp": 1135243000000, "duration": 197000000, "timestamp_inferred": true, @@ -4986,8 +4958,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-352", - "pos": 352, + "id": "ep-xfm-S1E18-350", + "pos": 350, "timestamp": 1135440000000, "duration": 5652000000, "timestamp_inferred": false, @@ -5000,8 +4972,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-353", - "pos": 353, + "id": "ep-xfm-S1E18-351", + "pos": 351, "timestamp": 1141092000000, "duration": 925000000, "timestamp_inferred": true, @@ -5014,8 +4986,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-354", - "pos": 354, + "id": "ep-xfm-S1E18-352", + "pos": 352, "timestamp": 1142017000000, "duration": 1073000000, "timestamp_inferred": true, @@ -5028,8 +5000,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-355", - "pos": 355, + "id": "ep-xfm-S1E18-353", + "pos": 353, "timestamp": 1143090000000, "duration": 4350000000, "timestamp_inferred": false, @@ -5042,8 +5014,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-356", - "pos": 356, + "id": "ep-xfm-S1E18-354", + "pos": 354, "timestamp": 1147440000000, "duration": 2109000000, "timestamp_inferred": false, @@ -5056,8 +5028,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-357", - "pos": 357, + "id": "ep-xfm-S1E18-355", + "pos": 355, "timestamp": 1149549000000, "duration": 291000000, "timestamp_inferred": true, @@ -5070,8 +5042,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-358", - "pos": 358, + "id": "ep-xfm-S1E18-356", + "pos": 356, "timestamp": 1149840000000, "duration": 14109000000, "timestamp_inferred": false, @@ -5084,8 +5056,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-359", - "pos": 359, + "id": "ep-xfm-S1E18-357", + "pos": 357, "timestamp": 1163949000000, "duration": 1184000000, "timestamp_inferred": true, @@ -5098,8 +5070,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-360", - "pos": 360, + "id": "ep-xfm-S1E18-358", + "pos": 358, "timestamp": 1165133000000, "duration": 8187000000, "timestamp_inferred": true, @@ -5112,8 +5084,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-361", - "pos": 361, + "id": "ep-xfm-S1E18-359", + "pos": 359, "timestamp": 1173320000000, "duration": 3538000000, "timestamp_inferred": false, @@ -5126,8 +5098,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-362", - "pos": 362, + "id": "ep-xfm-S1E18-360", + "pos": 360, "timestamp": 1176858000000, "duration": 1062000000, "timestamp_inferred": true, @@ -5140,8 +5112,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-363", - "pos": 363, + "id": "ep-xfm-S1E18-361", + "pos": 361, "timestamp": 1177920000000, "duration": 6466000000, "timestamp_inferred": false, @@ -5154,8 +5126,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-364", - "pos": 364, + "id": "ep-xfm-S1E18-362", + "pos": 362, "timestamp": 1184386000000, "duration": 454000000, "timestamp_inferred": true, @@ -5168,8 +5140,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-365", - "pos": 365, + "id": "ep-xfm-S1E18-363", + "pos": 363, "timestamp": 1184840000000, "duration": 12173000000, "timestamp_inferred": false, @@ -5182,8 +5154,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-366", - "pos": 366, + "id": "ep-xfm-S1E18-364", + "pos": 364, "timestamp": 1197013000000, "duration": 2461000000, "timestamp_inferred": true, @@ -5196,8 +5168,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-367", - "pos": 367, + "id": "ep-xfm-S1E18-365", + "pos": 365, "timestamp": 1199474000000, "duration": 836000000, "timestamp_inferred": true, @@ -5210,8 +5182,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-368", - "pos": 368, + "id": "ep-xfm-S1E18-366", + "pos": 366, "timestamp": 1200310000000, "duration": 6498000000, "timestamp_inferred": false, @@ -5224,8 +5196,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-369", - "pos": 369, + "id": "ep-xfm-S1E18-367", + "pos": 367, "timestamp": 1206808000000, "duration": 457000000, "timestamp_inferred": true, @@ -5238,8 +5210,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-370", - "pos": 370, + "id": "ep-xfm-S1E18-368", + "pos": 368, "timestamp": 1207265000000, "duration": 8694000000, "timestamp_inferred": true, @@ -5252,8 +5224,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-371", - "pos": 371, + "id": "ep-xfm-S1E18-369", + "pos": 369, "timestamp": 1215959000000, "duration": 551000000, "timestamp_inferred": true, @@ -5266,8 +5238,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-372", - "pos": 372, + "id": "ep-xfm-S1E18-370", + "pos": 370, "timestamp": 1216510000000, "duration": 8617000000, "timestamp_inferred": false, @@ -5280,8 +5252,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-373", - "pos": 373, + "id": "ep-xfm-S1E18-371", + "pos": 371, "timestamp": 1225127000000, "duration": 1832000000, "timestamp_inferred": true, @@ -5294,8 +5266,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-374", - "pos": 374, + "id": "ep-xfm-S1E18-372", + "pos": 372, "timestamp": 1226959000000, "duration": 2080000000, "timestamp_inferred": true, @@ -5308,8 +5280,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-375", - "pos": 375, + "id": "ep-xfm-S1E18-373", + "pos": 373, "timestamp": 1229039000000, "duration": 1634000000, "timestamp_inferred": true, @@ -5322,8 +5294,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-376", - "pos": 376, + "id": "ep-xfm-S1E18-374", + "pos": 374, "timestamp": 1230673000000, "duration": 7131000000, "timestamp_inferred": true, @@ -5336,8 +5308,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-377", - "pos": 377, + "id": "ep-xfm-S1E18-375", + "pos": 375, "timestamp": 1237804000000, "duration": 1089000000, "timestamp_inferred": true, @@ -5350,8 +5322,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-378", - "pos": 378, + "id": "ep-xfm-S1E18-376", + "pos": 376, "timestamp": 1238893000000, "duration": 2773000000, "timestamp_inferred": true, @@ -5364,8 +5336,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-379", - "pos": 379, + "id": "ep-xfm-S1E18-377", + "pos": 377, "timestamp": 1241666000000, "duration": 841000000, "timestamp_inferred": true, @@ -5378,8 +5350,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-380", - "pos": 380, + "id": "ep-xfm-S1E18-378", + "pos": 378, "timestamp": 1242507000000, "duration": 1337000000, "timestamp_inferred": true, @@ -5392,8 +5364,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-381", - "pos": 381, + "id": "ep-xfm-S1E18-379", + "pos": 379, "timestamp": 1243844000000, "duration": 198000000, "timestamp_inferred": true, @@ -5406,8 +5378,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-382", - "pos": 382, + "id": "ep-xfm-S1E18-380", + "pos": 380, "timestamp": 1244042000000, "duration": 1436000000, "timestamp_inferred": true, @@ -5420,8 +5392,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-383", - "pos": 383, + "id": "ep-xfm-S1E18-381", + "pos": 381, "timestamp": 1245478000000, "duration": 247000000, "timestamp_inferred": true, @@ -5434,8 +5406,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-384", - "pos": 384, + "id": "ep-xfm-S1E18-382", + "pos": 382, "timestamp": 1245725000000, "duration": 1733000000, "timestamp_inferred": true, @@ -5448,8 +5420,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-385", - "pos": 385, + "id": "ep-xfm-S1E18-383", + "pos": 383, "timestamp": 1247458000000, "duration": 1683000000, "timestamp_inferred": true, @@ -5462,8 +5434,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-386", - "pos": 386, + "id": "ep-xfm-S1E18-384", + "pos": 384, "timestamp": 1249141000000, "duration": 4019000000, "timestamp_inferred": true, @@ -5476,8 +5448,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-387", - "pos": 387, + "id": "ep-xfm-S1E18-385", + "pos": 385, "timestamp": 1253160000000, "duration": 1960000000, "timestamp_inferred": false, @@ -5490,8 +5462,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-388", - "pos": 388, + "id": "ep-xfm-S1E18-386", + "pos": 386, "timestamp": 1255120000000, "duration": 15392000000, "timestamp_inferred": false, @@ -5504,8 +5476,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-389", - "pos": 389, + "id": "ep-xfm-S1E18-387", + "pos": 387, "timestamp": 1270512000000, "duration": 458000000, "timestamp_inferred": true, @@ -5518,8 +5490,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-390", - "pos": 390, + "id": "ep-xfm-S1E18-388", + "pos": 388, "timestamp": 1270970000000, "duration": 3170000000, "timestamp_inferred": false, @@ -5532,8 +5504,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-391", - "pos": 391, + "id": "ep-xfm-S1E18-389", + "pos": 389, "timestamp": 1274140000000, "duration": 2110000000, "timestamp_inferred": false, @@ -5546,8 +5518,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-392", - "pos": 392, + "id": "ep-xfm-S1E18-390", + "pos": 390, "timestamp": 1276250000000, "duration": 1880000000, "timestamp_inferred": false, @@ -5560,8 +5532,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-393", - "pos": 393, + "id": "ep-xfm-S1E18-391", + "pos": 391, "timestamp": 1278130000000, "duration": 2677000000, "timestamp_inferred": false, @@ -5574,8 +5546,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-394", - "pos": 394, + "id": "ep-xfm-S1E18-392", + "pos": 392, "timestamp": 1280807000000, "duration": 738000000, "timestamp_inferred": true, @@ -5588,8 +5560,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-395", - "pos": 395, + "id": "ep-xfm-S1E18-393", + "pos": 393, "timestamp": 1281545000000, "duration": 555000000, "timestamp_inferred": true, @@ -5602,8 +5574,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-396", - "pos": 396, + "id": "ep-xfm-S1E18-394", + "pos": 394, "timestamp": 1282100000000, "duration": 8362000000, "timestamp_inferred": false, @@ -5616,8 +5588,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-397", - "pos": 397, + "id": "ep-xfm-S1E18-395", + "pos": 395, "timestamp": 1290462000000, "duration": 678000000, "timestamp_inferred": true, @@ -5630,8 +5602,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-398", - "pos": 398, + "id": "ep-xfm-S1E18-396", + "pos": 396, "timestamp": 1291140000000, "duration": 3390000000, "timestamp_inferred": false, @@ -5644,8 +5616,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-399", - "pos": 399, + "id": "ep-xfm-S1E18-397", + "pos": 397, "timestamp": 1294530000000, "duration": 2666000000, "timestamp_inferred": false, @@ -5658,8 +5630,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-400", - "pos": 400, + "id": "ep-xfm-S1E18-398", + "pos": 398, "timestamp": 1297196000000, "duration": 246000000, "timestamp_inferred": true, @@ -5672,8 +5644,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-401", - "pos": 401, + "id": "ep-xfm-S1E18-399", + "pos": 399, "timestamp": 1297442000000, "duration": 298000000, "timestamp_inferred": true, @@ -5686,8 +5658,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-402", - "pos": 402, + "id": "ep-xfm-S1E18-400", + "pos": 400, "timestamp": 1297740000000, "duration": 13640000000, "timestamp_inferred": false, @@ -5700,8 +5672,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-403", - "pos": 403, + "id": "ep-xfm-S1E18-401", + "pos": 401, "timestamp": 1311380000000, "duration": 16487000000, "timestamp_inferred": false, @@ -5714,8 +5686,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-404", - "pos": 404, + "id": "ep-xfm-S1E18-402", + "pos": 402, "timestamp": 1327867000000, "duration": 3841000000, "timestamp_inferred": true, @@ -5728,8 +5700,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-405", - "pos": 405, + "id": "ep-xfm-S1E18-403", + "pos": 403, "timestamp": 1331708000000, "duration": 640000000, "timestamp_inferred": true, @@ -5742,8 +5714,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-406", - "pos": 406, + "id": "ep-xfm-S1E18-404", + "pos": 404, "timestamp": 1332348000000, "duration": 2934000000, "timestamp_inferred": true, @@ -5756,8 +5728,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-407", - "pos": 407, + "id": "ep-xfm-S1E18-405", + "pos": 405, "timestamp": 1335282000000, "duration": 5818000000, "timestamp_inferred": true, @@ -5770,8 +5742,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-408", - "pos": 408, + "id": "ep-xfm-S1E18-406", + "pos": 406, "timestamp": 1341100000000, "duration": 3324000000, "timestamp_inferred": false, @@ -5784,8 +5756,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-409", - "pos": 409, + "id": "ep-xfm-S1E18-407", + "pos": 407, "timestamp": 1344424000000, "duration": 946000000, "timestamp_inferred": true, @@ -5798,8 +5770,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-410", - "pos": 410, + "id": "ep-xfm-S1E18-408", + "pos": 408, "timestamp": 1345370000000, "duration": 3549000000, "timestamp_inferred": false, @@ -5812,8 +5784,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-411", - "pos": 411, + "id": "ep-xfm-S1E18-409", + "pos": 409, "timestamp": 1348919000000, "duration": 191000000, "timestamp_inferred": true, @@ -5826,8 +5798,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-412", - "pos": 412, + "id": "ep-xfm-S1E18-410", + "pos": 410, "timestamp": 1349110000000, "duration": 6125000000, "timestamp_inferred": false, @@ -5840,8 +5812,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-413", - "pos": 413, + "id": "ep-xfm-S1E18-411", + "pos": 411, "timestamp": 1355235000000, "duration": 6295000000, "timestamp_inferred": true, @@ -5854,8 +5826,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-414", - "pos": 414, + "id": "ep-xfm-S1E18-412", + "pos": 412, "timestamp": 1361530000000, "duration": 2000000000, "timestamp_inferred": false, @@ -5868,8 +5840,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-415", - "pos": 415, + "id": "ep-xfm-S1E18-413", + "pos": 413, "timestamp": 1363530000000, "duration": 1605000000, "timestamp_inferred": true, @@ -5882,8 +5854,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-416", - "pos": 416, + "id": "ep-xfm-S1E18-414", + "pos": 414, "timestamp": 1365135000000, "duration": 558000000, "timestamp_inferred": true, @@ -5896,8 +5868,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-417", - "pos": 417, + "id": "ep-xfm-S1E18-415", + "pos": 415, "timestamp": 1365693000000, "duration": 117000000, "timestamp_inferred": true, @@ -5910,8 +5882,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-418", - "pos": 418, + "id": "ep-xfm-S1E18-416", + "pos": 416, "timestamp": 1365810000000, "duration": 1251000000, "timestamp_inferred": false, @@ -5924,8 +5896,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-419", - "pos": 419, + "id": "ep-xfm-S1E18-417", + "pos": 417, "timestamp": 1367061000000, "duration": 1681000000, "timestamp_inferred": true, @@ -5938,8 +5910,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-420", - "pos": 420, + "id": "ep-xfm-S1E18-418", + "pos": 418, "timestamp": 1368742000000, "duration": 118000000, "timestamp_inferred": true, @@ -5952,8 +5924,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-421", - "pos": 421, + "id": "ep-xfm-S1E18-419", + "pos": 419, "timestamp": 1368860000000, "duration": 3370000000, "timestamp_inferred": false, @@ -5966,8 +5938,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-422", - "pos": 422, + "id": "ep-xfm-S1E18-420", + "pos": 420, "timestamp": 1372230000000, "duration": 250000000, "timestamp_inferred": true, @@ -5980,8 +5952,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-423", - "pos": 423, + "id": "ep-xfm-S1E18-421", + "pos": 421, "timestamp": 1372480000000, "duration": 7380000000, "timestamp_inferred": false, @@ -5994,8 +5966,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-424", - "pos": 424, + "id": "ep-xfm-S1E18-422", + "pos": 422, "timestamp": 1379860000000, "duration": 5051000000, "timestamp_inferred": false, @@ -6008,8 +5980,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-425", - "pos": 425, + "id": "ep-xfm-S1E18-423", + "pos": 423, "timestamp": 1384911000000, "duration": 274000000, "timestamp_inferred": true, @@ -6022,8 +5994,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-426", - "pos": 426, + "id": "ep-xfm-S1E18-424", + "pos": 424, "timestamp": 1385185000000, "duration": 1317000000, "timestamp_inferred": true, @@ -6036,8 +6008,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-427", - "pos": 427, + "id": "ep-xfm-S1E18-425", + "pos": 425, "timestamp": 1386502000000, "duration": 2361000000, "timestamp_inferred": true, @@ -6050,8 +6022,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-428", - "pos": 428, + "id": "ep-xfm-S1E18-426", + "pos": 426, "timestamp": 1388863000000, "duration": 277000000, "timestamp_inferred": true, @@ -6064,8 +6036,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-429", - "pos": 429, + "id": "ep-xfm-S1E18-427", + "pos": 427, "timestamp": 1389140000000, "duration": 2135000000, "timestamp_inferred": false, @@ -6078,8 +6050,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-430", - "pos": 430, + "id": "ep-xfm-S1E18-428", + "pos": 428, "timestamp": 1391275000000, "duration": 660000000, "timestamp_inferred": true, @@ -6092,8 +6064,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-431", - "pos": 431, + "id": "ep-xfm-S1E18-429", + "pos": 429, "timestamp": 1391935000000, "duration": 305000000, "timestamp_inferred": true, @@ -6106,8 +6078,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-432", - "pos": 432, + "id": "ep-xfm-S1E18-430", + "pos": 430, "timestamp": 1392240000000, "duration": 1170000000, "timestamp_inferred": true, @@ -6120,8 +6092,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-433", - "pos": 433, + "id": "ep-xfm-S1E18-431", + "pos": 431, "timestamp": 1393410000000, "duration": 862000000, "timestamp_inferred": false, @@ -6134,8 +6106,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-434", - "pos": 434, + "id": "ep-xfm-S1E18-432", + "pos": 432, "timestamp": 1394272000000, "duration": 1689000000, "timestamp_inferred": true, @@ -6148,8 +6120,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-435", - "pos": 435, + "id": "ep-xfm-S1E18-433", + "pos": 433, "timestamp": 1395961000000, "duration": 179000000, "timestamp_inferred": true, @@ -6162,8 +6134,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-436", - "pos": 436, + "id": "ep-xfm-S1E18-434", + "pos": 434, "timestamp": 1396140000000, "duration": 110000000, "timestamp_inferred": true, @@ -6176,8 +6148,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-437", - "pos": 437, + "id": "ep-xfm-S1E18-435", + "pos": 435, "timestamp": 1396250000000, "duration": 3937000000, "timestamp_inferred": false, @@ -6190,8 +6162,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-438", - "pos": 438, + "id": "ep-xfm-S1E18-436", + "pos": 436, "timestamp": 1400187000000, "duration": 184000000, "timestamp_inferred": true, @@ -6204,8 +6176,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-439", - "pos": 439, + "id": "ep-xfm-S1E18-437", + "pos": 437, "timestamp": 1400371000000, "duration": 1661000000, "timestamp_inferred": true, @@ -6218,8 +6190,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-440", - "pos": 440, + "id": "ep-xfm-S1E18-438", + "pos": 438, "timestamp": 1402032000000, "duration": 1599000000, "timestamp_inferred": true, @@ -6232,8 +6204,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-441", - "pos": 441, + "id": "ep-xfm-S1E18-439", + "pos": 439, "timestamp": 1403631000000, "duration": 246000000, "timestamp_inferred": true, @@ -6246,8 +6218,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-442", - "pos": 442, + "id": "ep-xfm-S1E18-440", + "pos": 440, "timestamp": 1403877000000, "duration": 2707000000, "timestamp_inferred": true, @@ -6260,8 +6232,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-443", - "pos": 443, + "id": "ep-xfm-S1E18-441", + "pos": 441, "timestamp": 1406584000000, "duration": 1722000000, "timestamp_inferred": true, @@ -6274,8 +6246,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-444", - "pos": 444, + "id": "ep-xfm-S1E18-442", + "pos": 442, "timestamp": 1408306000000, "duration": 369000000, "timestamp_inferred": true, @@ -6288,8 +6260,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-445", - "pos": 445, + "id": "ep-xfm-S1E18-443", + "pos": 443, "timestamp": 1408675000000, "duration": 3814000000, "timestamp_inferred": true, @@ -6302,8 +6274,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-446", - "pos": 446, + "id": "ep-xfm-S1E18-444", + "pos": 444, "timestamp": 1412489000000, "duration": 251000000, "timestamp_inferred": true, @@ -6316,8 +6288,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-447", - "pos": 447, + "id": "ep-xfm-S1E18-445", + "pos": 445, "timestamp": 1412740000000, "duration": 1255000000, "timestamp_inferred": false, @@ -6330,8 +6302,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-448", - "pos": 448, + "id": "ep-xfm-S1E18-446", + "pos": 446, "timestamp": 1413995000000, "duration": 135000000, "timestamp_inferred": true, @@ -6344,8 +6316,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-449", - "pos": 449, + "id": "ep-xfm-S1E18-447", + "pos": 447, "timestamp": 1414130000000, "duration": 5722000000, "timestamp_inferred": false, @@ -6358,8 +6330,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-450", - "pos": 450, + "id": "ep-xfm-S1E18-448", + "pos": 448, "timestamp": 1419852000000, "duration": 3540000000, "timestamp_inferred": true, @@ -6372,8 +6344,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-451", - "pos": 451, + "id": "ep-xfm-S1E18-449", + "pos": 449, "timestamp": 1423392000000, "duration": 193000000, "timestamp_inferred": true, @@ -6386,8 +6358,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-452", - "pos": 452, + "id": "ep-xfm-S1E18-450", + "pos": 450, "timestamp": 1423585000000, "duration": 3540000000, "timestamp_inferred": true, @@ -6400,8 +6372,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-453", - "pos": 453, + "id": "ep-xfm-S1E18-451", + "pos": 451, "timestamp": 1427125000000, "duration": 245000000, "timestamp_inferred": true, @@ -6414,8 +6386,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-454", - "pos": 454, + "id": "ep-xfm-S1E18-452", + "pos": 452, "timestamp": 1427370000000, "duration": 1212000000, "timestamp_inferred": false, @@ -6428,8 +6400,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-455", - "pos": 455, + "id": "ep-xfm-S1E18-453", + "pos": 453, "timestamp": 1428582000000, "duration": 148000000, "timestamp_inferred": true, @@ -6442,8 +6414,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-456", - "pos": 456, + "id": "ep-xfm-S1E18-454", + "pos": 454, "timestamp": 1428730000000, "duration": 8088000000, "timestamp_inferred": false, @@ -6456,8 +6428,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-457", - "pos": 457, + "id": "ep-xfm-S1E18-455", + "pos": 455, "timestamp": 1436818000000, "duration": 1004000000, "timestamp_inferred": true, @@ -6470,8 +6442,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-458", - "pos": 458, + "id": "ep-xfm-S1E18-456", + "pos": 456, "timestamp": 1437822000000, "duration": 653000000, "timestamp_inferred": true, @@ -6484,8 +6456,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-459", - "pos": 459, + "id": "ep-xfm-S1E18-457", + "pos": 457, "timestamp": 1438475000000, "duration": 2009000000, "timestamp_inferred": true, @@ -6498,8 +6470,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-460", - "pos": 460, + "id": "ep-xfm-S1E18-458", + "pos": 458, "timestamp": 1440484000000, "duration": 301000000, "timestamp_inferred": true, @@ -6512,8 +6484,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-461", - "pos": 461, + "id": "ep-xfm-S1E18-459", + "pos": 459, "timestamp": 1440785000000, "duration": 1507000000, "timestamp_inferred": true, @@ -6526,8 +6498,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-462", - "pos": 462, + "id": "ep-xfm-S1E18-460", + "pos": 460, "timestamp": 1442292000000, "duration": 150000000, "timestamp_inferred": true, @@ -6540,8 +6512,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-463", - "pos": 463, + "id": "ep-xfm-S1E18-461", + "pos": 461, "timestamp": 1442442000000, "duration": 1108000000, "timestamp_inferred": true, @@ -6554,8 +6526,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-464", - "pos": 464, + "id": "ep-xfm-S1E18-462", + "pos": 462, "timestamp": 1443550000000, "duration": 3730000000, "timestamp_inferred": false, @@ -6568,8 +6540,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-465", - "pos": 465, + "id": "ep-xfm-S1E18-463", + "pos": 463, "timestamp": 1447280000000, "duration": 1023000000, "timestamp_inferred": false, @@ -6582,8 +6554,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-466", - "pos": 466, + "id": "ep-xfm-S1E18-464", + "pos": 464, "timestamp": 1448303000000, "duration": 712000000, "timestamp_inferred": true, @@ -6596,8 +6568,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-467", - "pos": 467, + "id": "ep-xfm-S1E18-465", + "pos": 465, "timestamp": 1449015000000, "duration": 222000000, "timestamp_inferred": true, @@ -6610,8 +6582,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-468", - "pos": 468, + "id": "ep-xfm-S1E18-466", + "pos": 466, "timestamp": 1449237000000, "duration": 1735000000, "timestamp_inferred": true, @@ -6624,8 +6596,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-469", - "pos": 469, + "id": "ep-xfm-S1E18-467", + "pos": 467, "timestamp": 1450972000000, "duration": 848000000, "timestamp_inferred": true, @@ -6638,8 +6610,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-470", - "pos": 470, + "id": "ep-xfm-S1E18-468", + "pos": 468, "timestamp": 1451820000000, "duration": 670000000, "timestamp_inferred": false, @@ -6652,8 +6624,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-471", - "pos": 471, + "id": "ep-xfm-S1E18-469", + "pos": 469, "timestamp": 1452490000000, "duration": 4824000000, "timestamp_inferred": false, @@ -6666,8 +6638,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-472", - "pos": 472, + "id": "ep-xfm-S1E18-470", + "pos": 470, "timestamp": 1457314000000, "duration": 175000000, "timestamp_inferred": true, @@ -6680,8 +6652,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-473", - "pos": 473, + "id": "ep-xfm-S1E18-471", + "pos": 471, "timestamp": 1457489000000, "duration": 1754000000, "timestamp_inferred": true, @@ -6694,8 +6666,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-474", - "pos": 474, + "id": "ep-xfm-S1E18-472", + "pos": 472, "timestamp": 1459243000000, "duration": 1008000000, "timestamp_inferred": true, @@ -6708,8 +6680,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-475", - "pos": 475, + "id": "ep-xfm-S1E18-473", + "pos": 473, "timestamp": 1460251000000, "duration": 1710000000, "timestamp_inferred": true, @@ -6722,8 +6694,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-476", - "pos": 476, + "id": "ep-xfm-S1E18-474", + "pos": 474, "timestamp": 1461961000000, "duration": 921000000, "timestamp_inferred": true, @@ -6736,8 +6708,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-477", - "pos": 477, + "id": "ep-xfm-S1E18-475", + "pos": 475, "timestamp": 1462882000000, "duration": 1535000000, "timestamp_inferred": true, @@ -6750,8 +6722,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-478", - "pos": 478, + "id": "ep-xfm-S1E18-476", + "pos": 476, "timestamp": 1464417000000, "duration": 526000000, "timestamp_inferred": true, @@ -6764,8 +6736,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-479", - "pos": 479, + "id": "ep-xfm-S1E18-477", + "pos": 477, "timestamp": 1464943000000, "duration": 4254000000, "timestamp_inferred": true, @@ -6778,8 +6750,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-480", - "pos": 480, + "id": "ep-xfm-S1E18-478", + "pos": 478, "timestamp": 1469197000000, "duration": 2153000000, "timestamp_inferred": true, @@ -6792,8 +6764,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-481", - "pos": 481, + "id": "ep-xfm-S1E18-479", + "pos": 479, "timestamp": 1471350000000, "duration": 1330000000, "timestamp_inferred": false, @@ -6806,8 +6778,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-482", - "pos": 482, + "id": "ep-xfm-S1E18-480", + "pos": 480, "timestamp": 1472680000000, "duration": 5981000000, "timestamp_inferred": false, @@ -6820,8 +6792,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-483", - "pos": 483, + "id": "ep-xfm-S1E18-481", + "pos": 481, "timestamp": 1478661000000, "duration": 309000000, "timestamp_inferred": true, @@ -6834,8 +6806,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-484", - "pos": 484, + "id": "ep-xfm-S1E18-482", + "pos": 482, "timestamp": 1478970000000, "duration": 1950000000, "timestamp_inferred": false, @@ -6848,8 +6820,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-485", - "pos": 485, + "id": "ep-xfm-S1E18-483", + "pos": 483, "timestamp": 1480920000000, "duration": 1770000000, "timestamp_inferred": true, @@ -6862,8 +6834,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-486", - "pos": 486, + "id": "ep-xfm-S1E18-484", + "pos": 484, "timestamp": 1482690000000, "duration": 1600000000, "timestamp_inferred": false, @@ -6876,8 +6848,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-487", - "pos": 487, + "id": "ep-xfm-S1E18-485", + "pos": 485, "timestamp": 1484290000000, "duration": 1160000000, "timestamp_inferred": true, @@ -6890,8 +6862,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-488", - "pos": 488, + "id": "ep-xfm-S1E18-486", + "pos": 486, "timestamp": 1485450000000, "duration": 6013000000, "timestamp_inferred": false, @@ -6904,8 +6876,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-489", - "pos": 489, + "id": "ep-xfm-S1E18-487", + "pos": 487, "timestamp": 1491463000000, "duration": 277000000, "timestamp_inferred": true, @@ -6918,8 +6890,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-490", - "pos": 490, + "id": "ep-xfm-S1E18-488", + "pos": 488, "timestamp": 1491740000000, "duration": 5125000000, "timestamp_inferred": false, @@ -6932,8 +6904,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-491", - "pos": 491, + "id": "ep-xfm-S1E18-489", + "pos": 489, "timestamp": 1496865000000, "duration": 1745000000, "timestamp_inferred": true, @@ -6946,8 +6918,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-492", - "pos": 492, + "id": "ep-xfm-S1E18-490", + "pos": 490, "timestamp": 1498610000000, "duration": 5898000000, "timestamp_inferred": false, @@ -6960,8 +6932,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-493", - "pos": 493, + "id": "ep-xfm-S1E18-491", + "pos": 491, "timestamp": 1504508000000, "duration": 903000000, "timestamp_inferred": true, @@ -6974,8 +6946,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-494", - "pos": 494, + "id": "ep-xfm-S1E18-492", + "pos": 492, "timestamp": 1505411000000, "duration": 1950000000, "timestamp_inferred": true, @@ -6988,8 +6960,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-495", - "pos": 495, + "id": "ep-xfm-S1E18-493", + "pos": 493, "timestamp": 1507361000000, "duration": 239000000, "timestamp_inferred": true, @@ -7002,8 +6974,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-496", - "pos": 496, + "id": "ep-xfm-S1E18-494", + "pos": 494, "timestamp": 1507600000000, "duration": 1670000000, "timestamp_inferred": false, @@ -7016,8 +6988,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-497", - "pos": 497, + "id": "ep-xfm-S1E18-495", + "pos": 495, "timestamp": 1509270000000, "duration": 1320000000, "timestamp_inferred": false, @@ -7030,8 +7002,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-498", - "pos": 498, + "id": "ep-xfm-S1E18-496", + "pos": 496, "timestamp": 1510590000000, "duration": 5841000000, "timestamp_inferred": false, @@ -7044,8 +7016,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-499", - "pos": 499, + "id": "ep-xfm-S1E18-497", + "pos": 497, "timestamp": 1516431000000, "duration": 929000000, "timestamp_inferred": true, @@ -7058,8 +7030,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-500", - "pos": 500, + "id": "ep-xfm-S1E18-498", + "pos": 498, "timestamp": 1517360000000, "duration": 310000000, "timestamp_inferred": true, @@ -7072,8 +7044,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-501", - "pos": 501, + "id": "ep-xfm-S1E18-499", + "pos": 499, "timestamp": 1517670000000, "duration": 4524000000, "timestamp_inferred": false, @@ -7086,8 +7058,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-502", - "pos": 502, + "id": "ep-xfm-S1E18-500", + "pos": 500, "timestamp": 1522194000000, "duration": 276000000, "timestamp_inferred": true, @@ -7100,8 +7072,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-503", - "pos": 503, + "id": "ep-xfm-S1E18-501", + "pos": 501, "timestamp": 1522470000000, "duration": 5619000000, "timestamp_inferred": false, @@ -7114,8 +7086,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-504", - "pos": 504, + "id": "ep-xfm-S1E18-502", + "pos": 502, "timestamp": 1528089000000, "duration": 1551000000, "timestamp_inferred": true, @@ -7128,8 +7100,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-505", - "pos": 505, + "id": "ep-xfm-S1E18-503", + "pos": 503, "timestamp": 1529640000000, "duration": 3055000000, "timestamp_inferred": false, @@ -7142,8 +7114,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-506", - "pos": 506, + "id": "ep-xfm-S1E18-504", + "pos": 504, "timestamp": 1532695000000, "duration": 213000000, "timestamp_inferred": true, @@ -7156,8 +7128,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-507", - "pos": 507, + "id": "ep-xfm-S1E18-505", + "pos": 505, "timestamp": 1532908000000, "duration": 5187000000, "timestamp_inferred": true, @@ -7170,8 +7142,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-508", - "pos": 508, + "id": "ep-xfm-S1E18-506", + "pos": 506, "timestamp": 1538095000000, "duration": 215000000, "timestamp_inferred": true, @@ -7184,8 +7156,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-509", - "pos": 509, + "id": "ep-xfm-S1E18-507", + "pos": 507, "timestamp": 1538310000000, "duration": 1617000000, "timestamp_inferred": false, @@ -7198,8 +7170,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-510", - "pos": 510, + "id": "ep-xfm-S1E18-508", + "pos": 508, "timestamp": 1539927000000, "duration": 158000000, "timestamp_inferred": true, @@ -7212,8 +7184,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-511", - "pos": 511, + "id": "ep-xfm-S1E18-509", + "pos": 509, "timestamp": 1540085000000, "duration": 1934000000, "timestamp_inferred": true, @@ -7226,8 +7198,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-512", - "pos": 512, + "id": "ep-xfm-S1E18-510", + "pos": 510, "timestamp": 1542019000000, "duration": 824000000, "timestamp_inferred": true, @@ -7240,8 +7212,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-513", - "pos": 513, + "id": "ep-xfm-S1E18-511", + "pos": 511, "timestamp": 1542843000000, "duration": 1207000000, "timestamp_inferred": true, @@ -7254,8 +7226,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-514", - "pos": 514, + "id": "ep-xfm-S1E18-512", + "pos": 512, "timestamp": 1544050000000, "duration": 6290000000, "timestamp_inferred": false, @@ -7268,8 +7240,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-515", - "pos": 515, + "id": "ep-xfm-S1E18-513", + "pos": 513, "timestamp": 1550340000000, "duration": 3340000000, "timestamp_inferred": false, @@ -7282,8 +7254,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-516", - "pos": 516, + "id": "ep-xfm-S1E18-514", + "pos": 514, "timestamp": 1553680000000, "duration": 600000000, "timestamp_inferred": true, @@ -7296,8 +7268,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-517", - "pos": 517, + "id": "ep-xfm-S1E18-515", + "pos": 515, "timestamp": 1554280000000, "duration": 11163000000, "timestamp_inferred": false, @@ -7310,8 +7282,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-518", - "pos": 518, + "id": "ep-xfm-S1E18-516", + "pos": 516, "timestamp": 1565443000000, "duration": 2146000000, "timestamp_inferred": true, @@ -7324,8 +7296,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-519", - "pos": 519, + "id": "ep-xfm-S1E18-517", + "pos": 517, "timestamp": 1567589000000, "duration": 1000000, "timestamp_inferred": true, @@ -7344,8 +7316,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-520", - "pos": 520, + "id": "ep-xfm-S1E18-518", + "pos": 518, "timestamp": 1567590000000, "duration": 1877000000, "timestamp_inferred": false, @@ -7358,8 +7330,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-521", - "pos": 521, + "id": "ep-xfm-S1E18-519", + "pos": 519, "timestamp": 1569467000000, "duration": 523000000, "timestamp_inferred": true, @@ -7372,8 +7344,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-522", - "pos": 522, + "id": "ep-xfm-S1E18-520", + "pos": 520, "timestamp": 1569990000000, "duration": 3320000000, "timestamp_inferred": true, @@ -7386,8 +7358,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-523", - "pos": 523, + "id": "ep-xfm-S1E18-521", + "pos": 521, "timestamp": 1573310000000, "duration": 4780000000, "timestamp_inferred": false, @@ -7400,8 +7372,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-524", - "pos": 524, + "id": "ep-xfm-S1E18-522", + "pos": 522, "timestamp": 1578090000000, "duration": 2626000000, "timestamp_inferred": false, @@ -7414,8 +7386,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-525", - "pos": 525, + "id": "ep-xfm-S1E18-523", + "pos": 523, "timestamp": 1580716000000, "duration": 1451000000, "timestamp_inferred": true, @@ -7428,8 +7400,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-526", - "pos": 526, + "id": "ep-xfm-S1E18-524", + "pos": 524, "timestamp": 1582167000000, "duration": 1383000000, "timestamp_inferred": true, @@ -7442,8 +7414,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-527", - "pos": 527, + "id": "ep-xfm-S1E18-525", + "pos": 525, "timestamp": 1583550000000, "duration": 2254000000, "timestamp_inferred": false, @@ -7456,8 +7428,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-528", - "pos": 528, + "id": "ep-xfm-S1E18-526", + "pos": 526, "timestamp": 1585804000000, "duration": 3630000000, "timestamp_inferred": true, @@ -7470,8 +7442,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-529", - "pos": 529, + "id": "ep-xfm-S1E18-527", + "pos": 527, "timestamp": 1589434000000, "duration": 458000000, "timestamp_inferred": true, @@ -7484,8 +7456,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-530", - "pos": 530, + "id": "ep-xfm-S1E18-528", + "pos": 528, "timestamp": 1589892000000, "duration": 305000000, "timestamp_inferred": true, @@ -7498,8 +7470,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-531", - "pos": 531, + "id": "ep-xfm-S1E18-529", + "pos": 529, "timestamp": 1590197000000, "duration": 1375000000, "timestamp_inferred": true, @@ -7512,8 +7484,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-532", - "pos": 532, + "id": "ep-xfm-S1E18-530", + "pos": 530, "timestamp": 1591572000000, "duration": 308000000, "timestamp_inferred": true, @@ -7526,8 +7498,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-533", - "pos": 533, + "id": "ep-xfm-S1E18-531", + "pos": 531, "timestamp": 1591880000000, "duration": 13260000000, "timestamp_inferred": false, @@ -7540,8 +7512,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-534", - "pos": 534, + "id": "ep-xfm-S1E18-532", + "pos": 532, "timestamp": 1605140000000, "duration": 2423000000, "timestamp_inferred": false, @@ -7554,8 +7526,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-535", - "pos": 535, + "id": "ep-xfm-S1E18-533", + "pos": 533, "timestamp": 1607563000000, "duration": 246000000, "timestamp_inferred": true, @@ -7568,8 +7540,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-536", - "pos": 536, + "id": "ep-xfm-S1E18-534", + "pos": 534, "timestamp": 1607809000000, "duration": 31705000000, "timestamp_inferred": true, @@ -7582,8 +7554,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-537", - "pos": 537, + "id": "ep-xfm-S1E18-535", + "pos": 535, "timestamp": 1639514000000, "duration": 1191000000, "timestamp_inferred": true, @@ -7596,8 +7568,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-538", - "pos": 538, + "id": "ep-xfm-S1E18-536", + "pos": 536, "timestamp": 1640705000000, "duration": 1889000000, "timestamp_inferred": true, @@ -7610,8 +7582,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-539", - "pos": 539, + "id": "ep-xfm-S1E18-537", + "pos": 537, "timestamp": 1642594000000, "duration": 3490000000, "timestamp_inferred": true, @@ -7624,8 +7596,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-540", - "pos": 540, + "id": "ep-xfm-S1E18-538", + "pos": 538, "timestamp": 1646084000000, "duration": 2628000000, "timestamp_inferred": true, @@ -7638,8 +7610,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-541", - "pos": 541, + "id": "ep-xfm-S1E18-539", + "pos": 539, "timestamp": 1648712000000, "duration": 5790000000, "timestamp_inferred": true, @@ -7652,8 +7624,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-542", - "pos": 542, + "id": "ep-xfm-S1E18-540", + "pos": 540, "timestamp": 1654502000000, "duration": 944000000, "timestamp_inferred": true, @@ -7666,8 +7638,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-543", - "pos": 543, + "id": "ep-xfm-S1E18-541", + "pos": 541, "timestamp": 1655446000000, "duration": 8424000000, "timestamp_inferred": true, @@ -7680,8 +7652,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-544", - "pos": 544, + "id": "ep-xfm-S1E18-542", + "pos": 542, "timestamp": 1663870000000, "duration": 5341000000, "timestamp_inferred": false, @@ -7694,8 +7666,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-545", - "pos": 545, + "id": "ep-xfm-S1E18-543", + "pos": 543, "timestamp": 1669211000000, "duration": 289000000, "timestamp_inferred": true, @@ -7708,8 +7680,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-546", - "pos": 546, + "id": "ep-xfm-S1E18-544", + "pos": 544, "timestamp": 1669500000000, "duration": 2074000000, "timestamp_inferred": false, @@ -7722,8 +7694,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-547", - "pos": 547, + "id": "ep-xfm-S1E18-545", + "pos": 545, "timestamp": 1671574000000, "duration": 2389000000, "timestamp_inferred": true, @@ -7736,8 +7708,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-548", - "pos": 548, + "id": "ep-xfm-S1E18-546", + "pos": 546, "timestamp": 1673963000000, "duration": 3652000000, "timestamp_inferred": true, @@ -7750,8 +7722,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-549", - "pos": 549, + "id": "ep-xfm-S1E18-547", + "pos": 547, "timestamp": 1677615000000, "duration": 225000000, "timestamp_inferred": true, @@ -7764,8 +7736,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-550", - "pos": 550, + "id": "ep-xfm-S1E18-548", + "pos": 548, "timestamp": 1677840000000, "duration": 1307000000, "timestamp_inferred": true, @@ -7778,8 +7750,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-551", - "pos": 551, + "id": "ep-xfm-S1E18-549", + "pos": 549, "timestamp": 1679147000000, "duration": 135000000, "timestamp_inferred": true, @@ -7792,8 +7764,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-552", - "pos": 552, + "id": "ep-xfm-S1E18-550", + "pos": 550, "timestamp": 1679282000000, "duration": 541000000, "timestamp_inferred": true, @@ -7806,8 +7778,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-553", - "pos": 553, + "id": "ep-xfm-S1E18-551", + "pos": 551, "timestamp": 1679823000000, "duration": 901000000, "timestamp_inferred": true, @@ -7820,8 +7792,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-554", - "pos": 554, + "id": "ep-xfm-S1E18-552", + "pos": 552, "timestamp": 1680724000000, "duration": 180000000, "timestamp_inferred": true, @@ -7834,8 +7806,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-555", - "pos": 555, + "id": "ep-xfm-S1E18-553", + "pos": 553, "timestamp": 1680904000000, "duration": 495000000, "timestamp_inferred": true, @@ -7848,8 +7820,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-556", - "pos": 556, + "id": "ep-xfm-S1E18-554", + "pos": 554, "timestamp": 1681399000000, "duration": 1217000000, "timestamp_inferred": true, @@ -7862,8 +7834,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-557", - "pos": 557, + "id": "ep-xfm-S1E18-555", + "pos": 555, "timestamp": 1682616000000, "duration": 541000000, "timestamp_inferred": true, @@ -7876,8 +7848,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-558", - "pos": 558, + "id": "ep-xfm-S1E18-556", + "pos": 556, "timestamp": 1683157000000, "duration": 225000000, "timestamp_inferred": true, @@ -7890,8 +7862,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-559", - "pos": 559, + "id": "ep-xfm-S1E18-557", + "pos": 557, "timestamp": 1683382000000, "duration": 586000000, "timestamp_inferred": true, @@ -7904,8 +7876,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-560", - "pos": 560, + "id": "ep-xfm-S1E18-558", + "pos": 558, "timestamp": 1683968000000, "duration": 405000000, "timestamp_inferred": true, @@ -7918,8 +7890,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-561", - "pos": 561, + "id": "ep-xfm-S1E18-559", + "pos": 559, "timestamp": 1684373000000, "duration": 3207000000, "timestamp_inferred": true, @@ -7932,8 +7904,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-562", - "pos": 562, + "id": "ep-xfm-S1E18-560", + "pos": 560, "timestamp": 1687580000000, "duration": 20540000000, "timestamp_inferred": false, @@ -7946,8 +7918,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-563", - "pos": 563, + "id": "ep-xfm-S1E18-561", + "pos": 561, "timestamp": 1708120000000, "duration": 4830000000, "timestamp_inferred": false, @@ -7960,8 +7932,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-564", - "pos": 564, + "id": "ep-xfm-S1E18-562", + "pos": 562, "timestamp": 1712950000000, "duration": 5970000000, "timestamp_inferred": false, @@ -7974,8 +7946,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-565", - "pos": 565, + "id": "ep-xfm-S1E18-563", + "pos": 563, "timestamp": 1718920000000, "duration": 3587000000, "timestamp_inferred": false, @@ -7988,8 +7960,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-566", - "pos": 566, + "id": "ep-xfm-S1E18-564", + "pos": 564, "timestamp": 1722507000000, "duration": 284000000, "timestamp_inferred": true, @@ -8002,8 +7974,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-567", - "pos": 567, + "id": "ep-xfm-S1E18-565", + "pos": 565, "timestamp": 1722791000000, "duration": 2279000000, "timestamp_inferred": true, @@ -8016,8 +7988,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-568", - "pos": 568, + "id": "ep-xfm-S1E18-566", + "pos": 566, "timestamp": 1725070000000, "duration": 8830000000, "timestamp_inferred": false, @@ -8030,8 +8002,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-569", - "pos": 569, + "id": "ep-xfm-S1E18-567", + "pos": 567, "timestamp": 1733900000000, "duration": 780000000, "timestamp_inferred": true, @@ -8044,8 +8016,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-570", - "pos": 570, + "id": "ep-xfm-S1E18-568", + "pos": 568, "timestamp": 1734680000000, "duration": 1310000000, "timestamp_inferred": false, @@ -8058,8 +8030,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-571", - "pos": 571, + "id": "ep-xfm-S1E18-569", + "pos": 569, "timestamp": 1735990000000, "duration": 12547000000, "timestamp_inferred": false, @@ -8072,8 +8044,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-572", - "pos": 572, + "id": "ep-xfm-S1E18-570", + "pos": 570, "timestamp": 1748537000000, "duration": 500000000, "timestamp_inferred": true, @@ -8086,8 +8058,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-573", - "pos": 573, + "id": "ep-xfm-S1E18-571", + "pos": 571, "timestamp": 1749037000000, "duration": 2293000000, "timestamp_inferred": true, @@ -8100,8 +8072,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-574", - "pos": 574, + "id": "ep-xfm-S1E18-572", + "pos": 572, "timestamp": 1751330000000, "duration": 635000000, "timestamp_inferred": false, @@ -8114,8 +8086,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-575", - "pos": 575, + "id": "ep-xfm-S1E18-573", + "pos": 573, "timestamp": 1751965000000, "duration": 795000000, "timestamp_inferred": true, @@ -8128,8 +8100,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-576", - "pos": 576, + "id": "ep-xfm-S1E18-574", + "pos": 574, "timestamp": 1752760000000, "duration": 10714000000, "timestamp_inferred": false, @@ -8142,8 +8114,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-577", - "pos": 577, + "id": "ep-xfm-S1E18-575", + "pos": 575, "timestamp": 1763474000000, "duration": 1339000000, "timestamp_inferred": true, @@ -8156,8 +8128,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-578", - "pos": 578, + "id": "ep-xfm-S1E18-576", + "pos": 576, "timestamp": 1764813000000, "duration": 257000000, "timestamp_inferred": true, @@ -8170,8 +8142,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-579", - "pos": 579, + "id": "ep-xfm-S1E18-577", + "pos": 577, "timestamp": 1765070000000, "duration": 927000000, "timestamp_inferred": true, @@ -8184,8 +8156,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-580", - "pos": 580, + "id": "ep-xfm-S1E18-578", + "pos": 578, "timestamp": 1765997000000, "duration": 2423000000, "timestamp_inferred": true, @@ -8198,8 +8170,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-581", - "pos": 581, + "id": "ep-xfm-S1E18-579", + "pos": 579, "timestamp": 1768420000000, "duration": 4499000000, "timestamp_inferred": false, @@ -8212,8 +8184,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-582", - "pos": 582, + "id": "ep-xfm-S1E18-580", + "pos": 580, "timestamp": 1772919000000, "duration": 227000000, "timestamp_inferred": true, @@ -8226,8 +8198,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-583", - "pos": 583, + "id": "ep-xfm-S1E18-581", + "pos": 581, "timestamp": 1773146000000, "duration": 4444000000, "timestamp_inferred": true, @@ -8240,8 +8212,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-584", - "pos": 584, + "id": "ep-xfm-S1E18-582", + "pos": 582, "timestamp": 1777590000000, "duration": 1500000000, "timestamp_inferred": false, @@ -8254,8 +8226,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-585", - "pos": 585, + "id": "ep-xfm-S1E18-583", + "pos": 583, "timestamp": 1779090000000, "duration": 6346000000, "timestamp_inferred": false, @@ -8268,8 +8240,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-586", - "pos": 586, + "id": "ep-xfm-S1E18-584", + "pos": 584, "timestamp": 1785436000000, "duration": 865000000, "timestamp_inferred": true, @@ -8282,8 +8254,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-587", - "pos": 587, + "id": "ep-xfm-S1E18-585", + "pos": 585, "timestamp": 1786301000000, "duration": 289000000, "timestamp_inferred": true, @@ -8296,8 +8268,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-588", - "pos": 588, + "id": "ep-xfm-S1E18-586", + "pos": 586, "timestamp": 1786590000000, "duration": 10347000000, "timestamp_inferred": false, @@ -8310,8 +8282,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-589", - "pos": 589, + "id": "ep-xfm-S1E18-587", + "pos": 587, "timestamp": 1796937000000, "duration": 1087000000, "timestamp_inferred": true, @@ -8324,8 +8296,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-590", - "pos": 590, + "id": "ep-xfm-S1E18-588", + "pos": 588, "timestamp": 1798024000000, "duration": 106000000, "timestamp_inferred": true, @@ -8338,8 +8310,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-591", - "pos": 591, + "id": "ep-xfm-S1E18-589", + "pos": 589, "timestamp": 1798130000000, "duration": 4340000000, "timestamp_inferred": false, @@ -8352,8 +8324,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-592", - "pos": 592, + "id": "ep-xfm-S1E18-590", + "pos": 590, "timestamp": 1802470000000, "duration": 38380000000, "timestamp_inferred": false, @@ -8366,8 +8338,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-593", - "pos": 593, + "id": "ep-xfm-S1E18-591", + "pos": 591, "timestamp": 1840850000000, "duration": 1920000000, "timestamp_inferred": true, @@ -8380,8 +8352,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-594", - "pos": 594, + "id": "ep-xfm-S1E18-592", + "pos": 592, "timestamp": 1842770000000, "duration": 8138000000, "timestamp_inferred": false, @@ -8394,8 +8366,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-595", - "pos": 595, + "id": "ep-xfm-S1E18-593", + "pos": 593, "timestamp": 1850908000000, "duration": 1125000000, "timestamp_inferred": true, @@ -8408,8 +8380,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-596", - "pos": 596, + "id": "ep-xfm-S1E18-594", + "pos": 594, "timestamp": 1852033000000, "duration": 217000000, "timestamp_inferred": true, @@ -8422,8 +8394,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-597", - "pos": 597, + "id": "ep-xfm-S1E18-595", + "pos": 595, "timestamp": 1852250000000, "duration": 19959000000, "timestamp_inferred": false, @@ -8436,8 +8408,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-598", - "pos": 598, + "id": "ep-xfm-S1E18-596", + "pos": 596, "timestamp": 1872209000000, "duration": 2571000000, "timestamp_inferred": true, @@ -8450,8 +8422,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-599", - "pos": 599, + "id": "ep-xfm-S1E18-597", + "pos": 597, "timestamp": 1874780000000, "duration": 1960000000, "timestamp_inferred": false, @@ -8464,8 +8436,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-600", - "pos": 600, + "id": "ep-xfm-S1E18-598", + "pos": 598, "timestamp": 1876740000000, "duration": 3410000000, "timestamp_inferred": false, @@ -8478,8 +8450,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-601", - "pos": 601, + "id": "ep-xfm-S1E18-599", + "pos": 599, "timestamp": 1880150000000, "duration": 1168000000, "timestamp_inferred": false, @@ -8492,8 +8464,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-602", - "pos": 602, + "id": "ep-xfm-S1E18-600", + "pos": 600, "timestamp": 1881318000000, "duration": 177000000, "timestamp_inferred": true, @@ -8506,8 +8478,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-603", - "pos": 603, + "id": "ep-xfm-S1E18-601", + "pos": 601, "timestamp": 1881495000000, "duration": 815000000, "timestamp_inferred": true, @@ -8520,8 +8492,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-604", - "pos": 604, + "id": "ep-xfm-S1E18-602", + "pos": 602, "timestamp": 1882310000000, "duration": 5240000000, "timestamp_inferred": false, @@ -8534,8 +8506,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-605", - "pos": 605, + "id": "ep-xfm-S1E18-603", + "pos": 603, "timestamp": 1887550000000, "duration": 3035000000, "timestamp_inferred": false, @@ -8548,8 +8520,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-606", - "pos": 606, + "id": "ep-xfm-S1E18-604", + "pos": 604, "timestamp": 1890585000000, "duration": 165000000, "timestamp_inferred": true, @@ -8562,8 +8534,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-607", - "pos": 607, + "id": "ep-xfm-S1E18-605", + "pos": 605, "timestamp": 1890750000000, "duration": 5141000000, "timestamp_inferred": false, @@ -8576,8 +8548,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-608", - "pos": 608, + "id": "ep-xfm-S1E18-606", + "pos": 606, "timestamp": 1895891000000, "duration": 193000000, "timestamp_inferred": true, @@ -8590,8 +8562,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-609", - "pos": 609, + "id": "ep-xfm-S1E18-607", + "pos": 607, "timestamp": 1896084000000, "duration": 695000000, "timestamp_inferred": true, @@ -8604,8 +8576,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-610", - "pos": 610, + "id": "ep-xfm-S1E18-608", + "pos": 608, "timestamp": 1896779000000, "duration": 1778000000, "timestamp_inferred": true, @@ -8618,8 +8590,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-611", - "pos": 611, + "id": "ep-xfm-S1E18-609", + "pos": 609, "timestamp": 1898557000000, "duration": 695000000, "timestamp_inferred": true, @@ -8632,8 +8604,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-612", - "pos": 612, + "id": "ep-xfm-S1E18-610", + "pos": 610, "timestamp": 1899252000000, "duration": 1546000000, "timestamp_inferred": true, @@ -8646,8 +8618,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-613", - "pos": 613, + "id": "ep-xfm-S1E18-611", + "pos": 611, "timestamp": 1900798000000, "duration": 1742000000, "timestamp_inferred": true, @@ -8660,8 +8632,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-614", - "pos": 614, + "id": "ep-xfm-S1E18-612", + "pos": 612, "timestamp": 1902540000000, "duration": 6062000000, "timestamp_inferred": false, @@ -8674,8 +8646,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-615", - "pos": 615, + "id": "ep-xfm-S1E18-613", + "pos": 613, "timestamp": 1908602000000, "duration": 673000000, "timestamp_inferred": true, @@ -8688,8 +8660,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-616", - "pos": 616, + "id": "ep-xfm-S1E18-614", + "pos": 614, "timestamp": 1909275000000, "duration": 785000000, "timestamp_inferred": true, @@ -8702,8 +8674,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-617", - "pos": 617, + "id": "ep-xfm-S1E18-615", + "pos": 615, "timestamp": 1910060000000, "duration": 4827000000, "timestamp_inferred": true, @@ -8716,8 +8688,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-618", - "pos": 618, + "id": "ep-xfm-S1E18-616", + "pos": 616, "timestamp": 1914887000000, "duration": 729000000, "timestamp_inferred": true, @@ -8730,8 +8702,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-619", - "pos": 619, + "id": "ep-xfm-S1E18-617", + "pos": 617, "timestamp": 1915616000000, "duration": 1347000000, "timestamp_inferred": true, @@ -8744,8 +8716,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-620", - "pos": 620, + "id": "ep-xfm-S1E18-618", + "pos": 618, "timestamp": 1916963000000, "duration": 2189000000, "timestamp_inferred": true, @@ -8758,8 +8730,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-621", - "pos": 621, + "id": "ep-xfm-S1E18-619", + "pos": 619, "timestamp": 1919152000000, "duration": 1852000000, "timestamp_inferred": true, @@ -8772,8 +8744,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-622", - "pos": 622, + "id": "ep-xfm-S1E18-620", + "pos": 620, "timestamp": 1921004000000, "duration": 5669000000, "timestamp_inferred": true, @@ -8786,8 +8758,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-623", - "pos": 623, + "id": "ep-xfm-S1E18-621", + "pos": 621, "timestamp": 1926673000000, "duration": 280000000, "timestamp_inferred": true, @@ -8800,8 +8772,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-624", - "pos": 624, + "id": "ep-xfm-S1E18-622", + "pos": 622, "timestamp": 1926953000000, "duration": 15828000000, "timestamp_inferred": true, @@ -8814,8 +8786,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-625", - "pos": 625, + "id": "ep-xfm-S1E18-623", + "pos": 623, "timestamp": 1942781000000, "duration": 280000000, "timestamp_inferred": true, @@ -8828,8 +8800,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-626", - "pos": 626, + "id": "ep-xfm-S1E18-624", + "pos": 624, "timestamp": 1943061000000, "duration": 5444000000, "timestamp_inferred": true, @@ -8842,8 +8814,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-627", - "pos": 627, + "id": "ep-xfm-S1E18-625", + "pos": 625, "timestamp": 1948505000000, "duration": 673000000, "timestamp_inferred": true, @@ -8856,8 +8828,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-628", - "pos": 628, + "id": "ep-xfm-S1E18-626", + "pos": 626, "timestamp": 1949178000000, "duration": 617000000, "timestamp_inferred": true, @@ -8870,8 +8842,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-629", - "pos": 629, + "id": "ep-xfm-S1E18-627", + "pos": 627, "timestamp": 1949795000000, "duration": 175000000, "timestamp_inferred": true, @@ -8884,8 +8856,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-630", - "pos": 630, + "id": "ep-xfm-S1E18-628", + "pos": 628, "timestamp": 1949970000000, "duration": 17873000000, "timestamp_inferred": false, @@ -8898,8 +8870,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-631", - "pos": 631, + "id": "ep-xfm-S1E18-629", + "pos": 629, "timestamp": 1967843000000, "duration": 297000000, "timestamp_inferred": true, @@ -8912,8 +8884,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-632", - "pos": 632, + "id": "ep-xfm-S1E18-630", + "pos": 630, "timestamp": 1968140000000, "duration": 6934000000, "timestamp_inferred": false, @@ -8926,8 +8898,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-633", - "pos": 633, + "id": "ep-xfm-S1E18-631", + "pos": 631, "timestamp": 1975074000000, "duration": 229000000, "timestamp_inferred": true, @@ -8940,8 +8912,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-634", - "pos": 634, + "id": "ep-xfm-S1E18-632", + "pos": 632, "timestamp": 1975303000000, "duration": 4776000000, "timestamp_inferred": true, @@ -8954,8 +8926,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-635", - "pos": 635, + "id": "ep-xfm-S1E18-633", + "pos": 633, "timestamp": 1980079000000, "duration": 1471000000, "timestamp_inferred": true, @@ -8968,8 +8940,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-636", - "pos": 636, + "id": "ep-xfm-S1E18-634", + "pos": 634, "timestamp": 1981550000000, "duration": 4270000000, "timestamp_inferred": false, @@ -8982,8 +8954,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-637", - "pos": 637, + "id": "ep-xfm-S1E18-635", + "pos": 635, "timestamp": 1985820000000, "duration": 1446000000, "timestamp_inferred": true, @@ -8996,8 +8968,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-638", - "pos": 638, + "id": "ep-xfm-S1E18-636", + "pos": 636, "timestamp": 1987266000000, "duration": 2342000000, "timestamp_inferred": true, @@ -9010,8 +8982,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-639", - "pos": 639, + "id": "ep-xfm-S1E18-637", + "pos": 637, "timestamp": 1989608000000, "duration": 1171000000, "timestamp_inferred": true, @@ -9024,8 +8996,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-640", - "pos": 640, + "id": "ep-xfm-S1E18-638", + "pos": 638, "timestamp": 1990779000000, "duration": 4890000000, "timestamp_inferred": true, @@ -9038,8 +9010,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-641", - "pos": 641, + "id": "ep-xfm-S1E18-639", + "pos": 639, "timestamp": 1995669000000, "duration": 2135000000, "timestamp_inferred": true, @@ -9052,8 +9024,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-642", - "pos": 642, + "id": "ep-xfm-S1E18-640", + "pos": 640, "timestamp": 1997804000000, "duration": 1033000000, "timestamp_inferred": true, @@ -9066,8 +9038,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-643", - "pos": 643, + "id": "ep-xfm-S1E18-641", + "pos": 641, "timestamp": 1998837000000, "duration": 3513000000, "timestamp_inferred": true, @@ -9080,8 +9052,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-644", - "pos": 644, + "id": "ep-xfm-S1E18-642", + "pos": 642, "timestamp": 2002350000000, "duration": 7301000000, "timestamp_inferred": true, @@ -9094,8 +9066,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-645", - "pos": 645, + "id": "ep-xfm-S1E18-643", + "pos": 643, "timestamp": 2009651000000, "duration": 2893000000, "timestamp_inferred": true, @@ -9108,8 +9080,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-646", - "pos": 646, + "id": "ep-xfm-S1E18-644", + "pos": 644, "timestamp": 2012544000000, "duration": 4890000000, "timestamp_inferred": true, @@ -9122,8 +9094,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-647", - "pos": 647, + "id": "ep-xfm-S1E18-645", + "pos": 645, "timestamp": 2017434000000, "duration": 344000000, "timestamp_inferred": true, @@ -9136,8 +9108,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-648", - "pos": 648, + "id": "ep-xfm-S1E18-646", + "pos": 646, "timestamp": 2017778000000, "duration": 2135000000, "timestamp_inferred": true, @@ -9150,8 +9122,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-649", - "pos": 649, + "id": "ep-xfm-S1E18-647", + "pos": 647, "timestamp": 2019913000000, "duration": 0, "timestamp_inferred": true, @@ -9164,8 +9136,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-650", - "pos": 650, + "id": "ep-xfm-S1E18-648", + "pos": 648, "timestamp": 2019913000000, "duration": 4890000000, "timestamp_inferred": true, @@ -9178,8 +9150,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-651", - "pos": 651, + "id": "ep-xfm-S1E18-649", + "pos": 649, "timestamp": 2024803000000, "duration": 344000000, "timestamp_inferred": true, @@ -9192,8 +9164,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-652", - "pos": 652, + "id": "ep-xfm-S1E18-650", + "pos": 650, "timestamp": 2025147000000, "duration": 7723000000, "timestamp_inferred": true, @@ -9206,8 +9178,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-653", - "pos": 653, + "id": "ep-xfm-S1E18-651", + "pos": 651, "timestamp": 2032870000000, "duration": 12370000000, "timestamp_inferred": false, @@ -9220,8 +9192,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-654", - "pos": 654, + "id": "ep-xfm-S1E18-652", + "pos": 652, "timestamp": 2045240000000, "duration": 213000000, "timestamp_inferred": true, @@ -9234,8 +9206,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-655", - "pos": 655, + "id": "ep-xfm-S1E18-653", + "pos": 653, "timestamp": 2045453000000, "duration": 107000000, "timestamp_inferred": true, @@ -9248,8 +9220,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-656", - "pos": 656, + "id": "ep-xfm-S1E18-654", + "pos": 654, "timestamp": 2045560000000, "duration": 24310000000, "timestamp_inferred": false, @@ -9262,8 +9234,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-657", - "pos": 657, + "id": "ep-xfm-S1E18-655", + "pos": 655, "timestamp": 2069870000000, "duration": 2664000000, "timestamp_inferred": false, @@ -9276,8 +9248,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-658", - "pos": 658, + "id": "ep-xfm-S1E18-656", + "pos": 656, "timestamp": 2072534000000, "duration": 852000000, "timestamp_inferred": true, @@ -9290,8 +9262,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-659", - "pos": 659, + "id": "ep-xfm-S1E18-657", + "pos": 657, "timestamp": 2073386000000, "duration": 214000000, "timestamp_inferred": true, @@ -9304,8 +9276,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-660", - "pos": 660, + "id": "ep-xfm-S1E18-658", + "pos": 658, "timestamp": 2073600000000, "duration": 14360000000, "timestamp_inferred": false, @@ -9318,8 +9290,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-661", - "pos": 661, + "id": "ep-xfm-S1E18-659", + "pos": 659, "timestamp": 2087960000000, "duration": 1520000000, "timestamp_inferred": false, @@ -9332,8 +9304,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-662", - "pos": 662, + "id": "ep-xfm-S1E18-660", + "pos": 660, "timestamp": 2089480000000, "duration": 17443000000, "timestamp_inferred": false, @@ -9346,8 +9318,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-663", - "pos": 663, + "id": "ep-xfm-S1E18-661", + "pos": 661, "timestamp": 2106923000000, "duration": 371000000, "timestamp_inferred": true, @@ -9360,8 +9332,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-664", - "pos": 664, + "id": "ep-xfm-S1E18-662", + "pos": 662, "timestamp": 2107294000000, "duration": 1558000000, "timestamp_inferred": true, @@ -9374,8 +9346,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-665", - "pos": 665, + "id": "ep-xfm-S1E18-663", + "pos": 663, "timestamp": 2108852000000, "duration": 2152000000, "timestamp_inferred": true, @@ -9388,8 +9360,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-666", - "pos": 666, + "id": "ep-xfm-S1E18-664", + "pos": 664, "timestamp": 2111004000000, "duration": 596000000, "timestamp_inferred": true, @@ -9402,8 +9374,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-667", - "pos": 667, + "id": "ep-xfm-S1E18-665", + "pos": 665, "timestamp": 2111600000000, "duration": 3117000000, "timestamp_inferred": false, @@ -9416,8 +9388,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-668", - "pos": 668, + "id": "ep-xfm-S1E18-666", + "pos": 666, "timestamp": 2114717000000, "duration": 10535000000, "timestamp_inferred": true, @@ -9430,8 +9402,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-669", - "pos": 669, + "id": "ep-xfm-S1E18-667", + "pos": 667, "timestamp": 2125252000000, "duration": 2528000000, "timestamp_inferred": true, @@ -9444,8 +9416,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-670", - "pos": 670, + "id": "ep-xfm-S1E18-668", + "pos": 668, "timestamp": 2127780000000, "duration": 10130000000, "timestamp_inferred": false, @@ -9458,8 +9430,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-671", - "pos": 671, + "id": "ep-xfm-S1E18-669", + "pos": 669, "timestamp": 2137910000000, "duration": 6633000000, "timestamp_inferred": false, @@ -9472,8 +9444,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-672", - "pos": 672, + "id": "ep-xfm-S1E18-670", + "pos": 670, "timestamp": 2144543000000, "duration": 1800000000, "timestamp_inferred": true, @@ -9486,8 +9458,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-673", - "pos": 673, + "id": "ep-xfm-S1E18-671", + "pos": 671, "timestamp": 2146343000000, "duration": 4359000000, "timestamp_inferred": true, @@ -9500,8 +9472,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-674", - "pos": 674, + "id": "ep-xfm-S1E18-672", + "pos": 672, "timestamp": 2150702000000, "duration": 331000000, "timestamp_inferred": true, @@ -9514,8 +9486,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-675", - "pos": 675, + "id": "ep-xfm-S1E18-673", + "pos": 673, "timestamp": 2151033000000, "duration": 1563000000, "timestamp_inferred": true, @@ -9528,8 +9500,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-676", - "pos": 676, + "id": "ep-xfm-S1E18-674", + "pos": 674, "timestamp": 2152596000000, "duration": 1089000000, "timestamp_inferred": true, @@ -9542,8 +9514,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-677", - "pos": 677, + "id": "ep-xfm-S1E18-675", + "pos": 675, "timestamp": 2153685000000, "duration": 5212000000, "timestamp_inferred": true, @@ -9556,8 +9528,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-678", - "pos": 678, + "id": "ep-xfm-S1E18-676", + "pos": 676, "timestamp": 2158897000000, "duration": 4363000000, "timestamp_inferred": true, @@ -9570,8 +9542,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-679", - "pos": 679, + "id": "ep-xfm-S1E18-677", + "pos": 677, "timestamp": 2163260000000, "duration": 9980000000, "timestamp_inferred": false, @@ -9584,8 +9556,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-680", - "pos": 680, + "id": "ep-xfm-S1E18-678", + "pos": 678, "timestamp": 2173240000000, "duration": 10129000000, "timestamp_inferred": false, @@ -9598,8 +9570,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-681", - "pos": 681, + "id": "ep-xfm-S1E18-679", + "pos": 679, "timestamp": 2183369000000, "duration": 621000000, "timestamp_inferred": true, @@ -9612,8 +9584,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-682", - "pos": 682, + "id": "ep-xfm-S1E18-680", + "pos": 680, "timestamp": 2183990000000, "duration": 18926000000, "timestamp_inferred": false, @@ -9626,8 +9598,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-683", - "pos": 683, + "id": "ep-xfm-S1E18-681", + "pos": 681, "timestamp": 2202916000000, "duration": 744000000, "timestamp_inferred": true, @@ -9640,8 +9612,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-684", - "pos": 684, + "id": "ep-xfm-S1E18-682", + "pos": 682, "timestamp": 2203660000000, "duration": 2619000000, "timestamp_inferred": false, @@ -9654,8 +9626,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-685", - "pos": 685, + "id": "ep-xfm-S1E18-683", + "pos": 683, "timestamp": 2206279000000, "duration": 2291000000, "timestamp_inferred": true, @@ -9668,8 +9640,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-686", - "pos": 686, + "id": "ep-xfm-S1E18-684", + "pos": 684, "timestamp": 2208570000000, "duration": 218000000, "timestamp_inferred": true, @@ -9682,8 +9654,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-687", - "pos": 687, + "id": "ep-xfm-S1E18-685", + "pos": 685, "timestamp": 2208788000000, "duration": 2402000000, "timestamp_inferred": true, @@ -9696,8 +9668,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-688", - "pos": 688, + "id": "ep-xfm-S1E18-686", + "pos": 686, "timestamp": 2211190000000, "duration": 2440000000, "timestamp_inferred": false, @@ -9710,8 +9682,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-689", - "pos": 689, + "id": "ep-xfm-S1E18-687", + "pos": 687, "timestamp": 2213630000000, "duration": 6667000000, "timestamp_inferred": false, @@ -9724,8 +9696,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-690", - "pos": 690, + "id": "ep-xfm-S1E18-688", + "pos": 688, "timestamp": 2220297000000, "duration": 1183000000, "timestamp_inferred": true, @@ -9738,8 +9710,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-691", - "pos": 691, + "id": "ep-xfm-S1E18-689", + "pos": 689, "timestamp": 2221480000000, "duration": 1262000000, "timestamp_inferred": true, @@ -9752,8 +9724,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-692", - "pos": 692, + "id": "ep-xfm-S1E18-690", + "pos": 690, "timestamp": 2222742000000, "duration": 3828000000, "timestamp_inferred": true, @@ -9766,8 +9738,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-693", - "pos": 693, + "id": "ep-xfm-S1E18-691", + "pos": 691, "timestamp": 2226570000000, "duration": 2038000000, "timestamp_inferred": false, @@ -9780,8 +9752,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-694", - "pos": 694, + "id": "ep-xfm-S1E18-692", + "pos": 692, "timestamp": 2228608000000, "duration": 94000000, "timestamp_inferred": true, @@ -9794,8 +9766,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-695", - "pos": 695, + "id": "ep-xfm-S1E18-693", + "pos": 693, "timestamp": 2228702000000, "duration": 1708000000, "timestamp_inferred": true, @@ -9808,8 +9780,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-696", - "pos": 696, + "id": "ep-xfm-S1E18-694", + "pos": 694, "timestamp": 2230410000000, "duration": 3840000000, "timestamp_inferred": false, @@ -9822,8 +9794,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-697", - "pos": 697, + "id": "ep-xfm-S1E18-695", + "pos": 695, "timestamp": 2234250000000, "duration": 471000000, "timestamp_inferred": true, @@ -9836,8 +9808,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-698", - "pos": 698, + "id": "ep-xfm-S1E18-696", + "pos": 696, "timestamp": 2234721000000, "duration": 269000000, "timestamp_inferred": true, @@ -9850,8 +9822,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-699", - "pos": 699, + "id": "ep-xfm-S1E18-697", + "pos": 697, "timestamp": 2234990000000, "duration": 1820000000, "timestamp_inferred": true, @@ -9864,8 +9836,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-700", - "pos": 700, + "id": "ep-xfm-S1E18-698", + "pos": 698, "timestamp": 2236810000000, "duration": 7884000000, "timestamp_inferred": false, @@ -9878,8 +9850,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-701", - "pos": 701, + "id": "ep-xfm-S1E18-699", + "pos": 699, "timestamp": 2244694000000, "duration": 298000000, "timestamp_inferred": true, @@ -9892,8 +9864,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-702", - "pos": 702, + "id": "ep-xfm-S1E18-700", + "pos": 700, "timestamp": 2244992000000, "duration": 778000000, "timestamp_inferred": true, @@ -9906,8 +9878,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-703", - "pos": 703, + "id": "ep-xfm-S1E18-701", + "pos": 701, "timestamp": 2245770000000, "duration": 8926000000, "timestamp_inferred": false, @@ -9920,8 +9892,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-704", - "pos": 704, + "id": "ep-xfm-S1E18-702", + "pos": 702, "timestamp": 2254696000000, "duration": 408000000, "timestamp_inferred": true, @@ -9934,8 +9906,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-705", - "pos": 705, + "id": "ep-xfm-S1E18-703", + "pos": 703, "timestamp": 2255104000000, "duration": 2625000000, "timestamp_inferred": true, @@ -9948,8 +9920,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-706", - "pos": 706, + "id": "ep-xfm-S1E18-704", + "pos": 704, "timestamp": 2257729000000, "duration": 8984000000, "timestamp_inferred": true, @@ -9962,8 +9934,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-707", - "pos": 707, + "id": "ep-xfm-S1E18-705", + "pos": 705, "timestamp": 2266713000000, "duration": 527000000, "timestamp_inferred": true, @@ -9976,8 +9948,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-708", - "pos": 708, + "id": "ep-xfm-S1E18-706", + "pos": 706, "timestamp": 2267240000000, "duration": 12200000000, "timestamp_inferred": false, @@ -9990,8 +9962,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-709", - "pos": 709, + "id": "ep-xfm-S1E18-707", + "pos": 707, "timestamp": 2279440000000, "duration": 1480000000, "timestamp_inferred": false, @@ -10004,8 +9976,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-710", - "pos": 710, + "id": "ep-xfm-S1E18-708", + "pos": 708, "timestamp": 2280920000000, "duration": 3550000000, "timestamp_inferred": false, @@ -10018,8 +9990,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-711", - "pos": 711, + "id": "ep-xfm-S1E18-709", + "pos": 709, "timestamp": 2284470000000, "duration": 1670000000, "timestamp_inferred": false, @@ -10032,8 +10004,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-712", - "pos": 712, + "id": "ep-xfm-S1E18-710", + "pos": 710, "timestamp": 2286140000000, "duration": 780000000, "timestamp_inferred": false, @@ -10046,8 +10018,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-713", - "pos": 713, + "id": "ep-xfm-S1E18-711", + "pos": 711, "timestamp": 2286920000000, "duration": 1238000000, "timestamp_inferred": false, @@ -10060,8 +10032,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-714", - "pos": 714, + "id": "ep-xfm-S1E18-712", + "pos": 712, "timestamp": 2288158000000, "duration": 302000000, "timestamp_inferred": true, @@ -10074,8 +10046,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-715", - "pos": 715, + "id": "ep-xfm-S1E18-713", + "pos": 713, "timestamp": 2288460000000, "duration": 21650000000, "timestamp_inferred": false, @@ -10088,8 +10060,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-716", - "pos": 716, + "id": "ep-xfm-S1E18-714", + "pos": 714, "timestamp": 2310110000000, "duration": 0, "timestamp_inferred": true, @@ -10108,8 +10080,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-717", - "pos": 717, + "id": "ep-xfm-S1E18-715", + "pos": 715, "timestamp": 2310110000000, "duration": 0, "timestamp_inferred": true, @@ -10128,8 +10100,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-718", - "pos": 718, + "id": "ep-xfm-S1E18-716", + "pos": 716, "timestamp": 2310110000000, "duration": 18380000000, "timestamp_inferred": false, @@ -10142,8 +10114,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-719", - "pos": 719, + "id": "ep-xfm-S1E18-717", + "pos": 717, "timestamp": 2328490000000, "duration": 7857000000, "timestamp_inferred": false, @@ -10156,8 +10128,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-720", - "pos": 720, + "id": "ep-xfm-S1E18-718", + "pos": 718, "timestamp": 2336347000000, "duration": 85000000, "timestamp_inferred": true, @@ -10170,8 +10142,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-721", - "pos": 721, + "id": "ep-xfm-S1E18-719", + "pos": 719, "timestamp": 2336432000000, "duration": 898000000, "timestamp_inferred": true, @@ -10184,8 +10156,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-722", - "pos": 722, + "id": "ep-xfm-S1E18-720", + "pos": 720, "timestamp": 2337330000000, "duration": 14281000000, "timestamp_inferred": false, @@ -10198,8 +10170,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-723", - "pos": 723, + "id": "ep-xfm-S1E18-721", + "pos": 721, "timestamp": 2351611000000, "duration": 529000000, "timestamp_inferred": true, @@ -10212,8 +10184,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-724", - "pos": 724, + "id": "ep-xfm-S1E18-722", + "pos": 722, "timestamp": 2352140000000, "duration": 8732000000, "timestamp_inferred": false, @@ -10226,8 +10198,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-725", - "pos": 725, + "id": "ep-xfm-S1E18-723", + "pos": 723, "timestamp": 2360872000000, "duration": 296000000, "timestamp_inferred": true, @@ -10240,8 +10212,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-726", - "pos": 726, + "id": "ep-xfm-S1E18-724", + "pos": 724, "timestamp": 2361168000000, "duration": 2912000000, "timestamp_inferred": true, @@ -10254,8 +10226,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-727", - "pos": 727, + "id": "ep-xfm-S1E18-725", + "pos": 725, "timestamp": 2364080000000, "duration": 1777000000, "timestamp_inferred": false, @@ -10268,8 +10240,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-728", - "pos": 728, + "id": "ep-xfm-S1E18-726", + "pos": 726, "timestamp": 2365857000000, "duration": 193000000, "timestamp_inferred": true, @@ -10282,8 +10254,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-729", - "pos": 729, + "id": "ep-xfm-S1E18-727", + "pos": 727, "timestamp": 2366050000000, "duration": 1180000000, "timestamp_inferred": false, @@ -10296,8 +10268,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-730", - "pos": 730, + "id": "ep-xfm-S1E18-728", + "pos": 728, "timestamp": 2367230000000, "duration": 3025000000, "timestamp_inferred": false, @@ -10310,8 +10282,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-731", - "pos": 731, + "id": "ep-xfm-S1E18-729", + "pos": 729, "timestamp": 2370255000000, "duration": 1344000000, "timestamp_inferred": true, @@ -10324,8 +10296,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-732", - "pos": 732, + "id": "ep-xfm-S1E18-730", + "pos": 730, "timestamp": 2371599000000, "duration": 1121000000, "timestamp_inferred": true, @@ -10338,8 +10310,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-733", - "pos": 733, + "id": "ep-xfm-S1E18-731", + "pos": 731, "timestamp": 2372720000000, "duration": 5586000000, "timestamp_inferred": false, @@ -10352,8 +10324,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-734", - "pos": 734, + "id": "ep-xfm-S1E18-732", + "pos": 732, "timestamp": 2378306000000, "duration": 1374000000, "timestamp_inferred": true, @@ -10366,8 +10338,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-735", - "pos": 735, + "id": "ep-xfm-S1E18-733", + "pos": 733, "timestamp": 2379680000000, "duration": 1470000000, "timestamp_inferred": false, @@ -10380,8 +10352,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-736", - "pos": 736, + "id": "ep-xfm-S1E18-734", + "pos": 734, "timestamp": 2381150000000, "duration": 531000000, "timestamp_inferred": true, @@ -10394,8 +10366,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-737", - "pos": 737, + "id": "ep-xfm-S1E18-735", + "pos": 735, "timestamp": 2381681000000, "duration": 9640000000, "timestamp_inferred": true, @@ -10408,8 +10380,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-738", - "pos": 738, + "id": "ep-xfm-S1E18-736", + "pos": 736, "timestamp": 2391321000000, "duration": 163000000, "timestamp_inferred": true, @@ -10422,8 +10394,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-739", - "pos": 739, + "id": "ep-xfm-S1E18-737", + "pos": 737, "timestamp": 2391484000000, "duration": 2287000000, "timestamp_inferred": true, @@ -10436,8 +10408,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-740", - "pos": 740, + "id": "ep-xfm-S1E18-738", + "pos": 738, "timestamp": 2393771000000, "duration": 776000000, "timestamp_inferred": true, @@ -10450,8 +10422,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-741", - "pos": 741, + "id": "ep-xfm-S1E18-739", + "pos": 739, "timestamp": 2394547000000, "duration": 1143000000, "timestamp_inferred": true, @@ -10464,8 +10436,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-742", - "pos": 742, + "id": "ep-xfm-S1E18-740", + "pos": 740, "timestamp": 2395690000000, "duration": 980000000, "timestamp_inferred": true, @@ -10478,8 +10450,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-743", - "pos": 743, + "id": "ep-xfm-S1E18-741", + "pos": 741, "timestamp": 2396670000000, "duration": 571000000, "timestamp_inferred": true, @@ -10492,8 +10464,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-744", - "pos": 744, + "id": "ep-xfm-S1E18-742", + "pos": 742, "timestamp": 2397241000000, "duration": 1470000000, "timestamp_inferred": true, @@ -10506,8 +10478,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-745", - "pos": 745, + "id": "ep-xfm-S1E18-743", + "pos": 743, "timestamp": 2398711000000, "duration": 1184000000, "timestamp_inferred": true, @@ -10520,8 +10492,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-746", - "pos": 746, + "id": "ep-xfm-S1E18-744", + "pos": 744, "timestamp": 2399895000000, "duration": 6005000000, "timestamp_inferred": true, @@ -10534,8 +10506,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-747", - "pos": 747, + "id": "ep-xfm-S1E18-745", + "pos": 745, "timestamp": 2405900000000, "duration": 490000000, "timestamp_inferred": true, @@ -10548,8 +10520,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-748", - "pos": 748, + "id": "ep-xfm-S1E18-746", + "pos": 746, "timestamp": 2406390000000, "duration": 2124000000, "timestamp_inferred": true, @@ -10562,8 +10534,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-749", - "pos": 749, + "id": "ep-xfm-S1E18-747", + "pos": 747, "timestamp": 2408514000000, "duration": 1879000000, "timestamp_inferred": true, @@ -10576,8 +10548,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-750", - "pos": 750, + "id": "ep-xfm-S1E18-748", + "pos": 748, "timestamp": 2410393000000, "duration": 1756000000, "timestamp_inferred": true, @@ -10590,8 +10562,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-751", - "pos": 751, + "id": "ep-xfm-S1E18-749", + "pos": 749, "timestamp": 2412149000000, "duration": 3104000000, "timestamp_inferred": true, @@ -10604,8 +10576,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-752", - "pos": 752, + "id": "ep-xfm-S1E18-750", + "pos": 750, "timestamp": 2415253000000, "duration": 1397000000, "timestamp_inferred": true, @@ -10618,8 +10590,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-753", - "pos": 753, + "id": "ep-xfm-S1E18-751", + "pos": 751, "timestamp": 2416650000000, "duration": 2300000000, "timestamp_inferred": false, @@ -10632,8 +10604,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-754", - "pos": 754, + "id": "ep-xfm-S1E18-752", + "pos": 752, "timestamp": 2418950000000, "duration": 13899000000, "timestamp_inferred": false, @@ -10646,8 +10618,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-755", - "pos": 755, + "id": "ep-xfm-S1E18-753", + "pos": 753, "timestamp": 2432849000000, "duration": 1101000000, "timestamp_inferred": true, @@ -10660,8 +10632,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-756", - "pos": 756, + "id": "ep-xfm-S1E18-754", + "pos": 754, "timestamp": 2433950000000, "duration": 7380000000, "timestamp_inferred": false, @@ -10674,8 +10646,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-757", - "pos": 757, + "id": "ep-xfm-S1E18-755", + "pos": 755, "timestamp": 2441330000000, "duration": 1970000000, "timestamp_inferred": false, @@ -10688,8 +10660,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-758", - "pos": 758, + "id": "ep-xfm-S1E18-756", + "pos": 756, "timestamp": 2443300000000, "duration": 5008000000, "timestamp_inferred": false, @@ -10702,8 +10674,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-759", - "pos": 759, + "id": "ep-xfm-S1E18-757", + "pos": 757, "timestamp": 2448308000000, "duration": 532000000, "timestamp_inferred": true, @@ -10716,8 +10688,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-760", - "pos": 760, + "id": "ep-xfm-S1E18-758", + "pos": 758, "timestamp": 2448840000000, "duration": 12106000000, "timestamp_inferred": false, @@ -10730,8 +10702,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-761", - "pos": 761, + "id": "ep-xfm-S1E18-759", + "pos": 759, "timestamp": 2460946000000, "duration": 396000000, "timestamp_inferred": true, @@ -10744,8 +10716,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-762", - "pos": 762, + "id": "ep-xfm-S1E18-760", + "pos": 760, "timestamp": 2461342000000, "duration": 11993000000, "timestamp_inferred": true, @@ -10758,8 +10730,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-763", - "pos": 763, + "id": "ep-xfm-S1E18-761", + "pos": 761, "timestamp": 2473335000000, "duration": 1301000000, "timestamp_inferred": true, @@ -10772,8 +10744,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-764", - "pos": 764, + "id": "ep-xfm-S1E18-762", + "pos": 762, "timestamp": 2474636000000, "duration": 454000000, "timestamp_inferred": true, @@ -10786,8 +10758,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-765", - "pos": 765, + "id": "ep-xfm-S1E18-763", + "pos": 763, "timestamp": 2475090000000, "duration": 9483000000, "timestamp_inferred": false, @@ -10800,8 +10772,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-766", - "pos": 766, + "id": "ep-xfm-S1E18-764", + "pos": 764, "timestamp": 2484573000000, "duration": 1436000000, "timestamp_inferred": true, @@ -10814,8 +10786,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-767", - "pos": 767, + "id": "ep-xfm-S1E18-765", + "pos": 765, "timestamp": 2486009000000, "duration": 4669000000, "timestamp_inferred": true, @@ -10828,8 +10800,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-768", - "pos": 768, + "id": "ep-xfm-S1E18-766", + "pos": 766, "timestamp": 2490678000000, "duration": 1436000000, "timestamp_inferred": true, @@ -10842,8 +10814,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-769", - "pos": 769, + "id": "ep-xfm-S1E18-767", + "pos": 767, "timestamp": 2492114000000, "duration": 2730000000, "timestamp_inferred": true, @@ -10856,8 +10828,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-770", - "pos": 770, + "id": "ep-xfm-S1E18-768", + "pos": 768, "timestamp": 2494844000000, "duration": 143000000, "timestamp_inferred": true, @@ -10870,8 +10842,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-771", - "pos": 771, + "id": "ep-xfm-S1E18-769", + "pos": 769, "timestamp": 2494987000000, "duration": 3089000000, "timestamp_inferred": true, @@ -10884,8 +10856,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-772", - "pos": 772, + "id": "ep-xfm-S1E18-770", + "pos": 770, "timestamp": 2498076000000, "duration": 646000000, "timestamp_inferred": true, @@ -10898,8 +10870,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-773", - "pos": 773, + "id": "ep-xfm-S1E18-771", + "pos": 771, "timestamp": 2498722000000, "duration": 2011000000, "timestamp_inferred": true, @@ -10912,8 +10884,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-774", - "pos": 774, + "id": "ep-xfm-S1E18-772", + "pos": 772, "timestamp": 2500733000000, "duration": 3089000000, "timestamp_inferred": true, @@ -10926,8 +10898,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-775", - "pos": 775, + "id": "ep-xfm-S1E18-773", + "pos": 773, "timestamp": 2503822000000, "duration": 1221000000, "timestamp_inferred": true, @@ -10940,8 +10912,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-776", - "pos": 776, + "id": "ep-xfm-S1E18-774", + "pos": 774, "timestamp": 2505043000000, "duration": 7040000000, "timestamp_inferred": true, @@ -10954,8 +10926,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-777", - "pos": 777, + "id": "ep-xfm-S1E18-775", + "pos": 775, "timestamp": 2512083000000, "duration": 1221000000, "timestamp_inferred": true, @@ -10968,8 +10940,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-778", - "pos": 778, + "id": "ep-xfm-S1E18-776", + "pos": 776, "timestamp": 2513304000000, "duration": 1156000000, "timestamp_inferred": true, @@ -10982,8 +10954,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-779", - "pos": 779, + "id": "ep-xfm-S1E18-777", + "pos": 777, "timestamp": 2514460000000, "duration": 4397000000, "timestamp_inferred": false, @@ -10996,8 +10968,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-780", - "pos": 780, + "id": "ep-xfm-S1E18-778", + "pos": 778, "timestamp": 2518857000000, "duration": 606000000, "timestamp_inferred": true, @@ -11010,8 +10982,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-781", - "pos": 781, + "id": "ep-xfm-S1E18-779", + "pos": 779, "timestamp": 2519463000000, "duration": 3337000000, "timestamp_inferred": true, @@ -11024,8 +10996,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-782", - "pos": 782, + "id": "ep-xfm-S1E18-780", + "pos": 780, "timestamp": 2522800000000, "duration": 19490000000, "timestamp_inferred": false, @@ -11038,8 +11010,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-783", - "pos": 783, + "id": "ep-xfm-S1E18-781", + "pos": 781, "timestamp": 2542290000000, "duration": 0, "timestamp_inferred": true, @@ -11058,8 +11030,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-784", - "pos": 784, + "id": "ep-xfm-S1E18-782", + "pos": 782, "timestamp": 2542290000000, "duration": 8948000000, "timestamp_inferred": false, @@ -11072,8 +11044,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-785", - "pos": 785, + "id": "ep-xfm-S1E18-783", + "pos": 783, "timestamp": 2551238000000, "duration": 2712000000, "timestamp_inferred": true, @@ -11086,8 +11058,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-786", - "pos": 786, + "id": "ep-xfm-S1E18-784", + "pos": 784, "timestamp": 2553950000000, "duration": 9435000000, "timestamp_inferred": false, @@ -11100,8 +11072,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-787", - "pos": 787, + "id": "ep-xfm-S1E18-785", + "pos": 785, "timestamp": 2563385000000, "duration": 515000000, "timestamp_inferred": true, @@ -11114,8 +11086,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-788", - "pos": 788, + "id": "ep-xfm-S1E18-786", + "pos": 786, "timestamp": 2563900000000, "duration": 10213000000, "timestamp_inferred": false, @@ -11128,8 +11100,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-789", - "pos": 789, + "id": "ep-xfm-S1E18-787", + "pos": 787, "timestamp": 2574113000000, "duration": 3134000000, "timestamp_inferred": true, @@ -11142,8 +11114,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-790", - "pos": 790, + "id": "ep-xfm-S1E18-788", + "pos": 788, "timestamp": 2577247000000, "duration": 810000000, "timestamp_inferred": true, @@ -11156,8 +11128,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-791", - "pos": 791, + "id": "ep-xfm-S1E18-789", + "pos": 789, "timestamp": 2578057000000, "duration": 6538000000, "timestamp_inferred": true, @@ -11170,8 +11142,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-792", - "pos": 792, + "id": "ep-xfm-S1E18-790", + "pos": 790, "timestamp": 2584595000000, "duration": 270000000, "timestamp_inferred": true, @@ -11184,8 +11156,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-793", - "pos": 793, + "id": "ep-xfm-S1E18-791", + "pos": 791, "timestamp": 2584865000000, "duration": 4809000000, "timestamp_inferred": true, @@ -11198,8 +11170,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-794", - "pos": 794, + "id": "ep-xfm-S1E18-792", + "pos": 792, "timestamp": 2589674000000, "duration": 5890000000, "timestamp_inferred": true, @@ -11212,8 +11184,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-795", - "pos": 795, + "id": "ep-xfm-S1E18-793", + "pos": 793, "timestamp": 2595564000000, "duration": 216000000, "timestamp_inferred": true, @@ -11226,8 +11198,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-796", - "pos": 796, + "id": "ep-xfm-S1E18-794", + "pos": 794, "timestamp": 2595780000000, "duration": 2701000000, "timestamp_inferred": true, @@ -11240,8 +11212,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-797", - "pos": 797, + "id": "ep-xfm-S1E18-795", + "pos": 795, "timestamp": 2598481000000, "duration": 1134000000, "timestamp_inferred": true, @@ -11254,8 +11226,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-798", - "pos": 798, + "id": "ep-xfm-S1E18-796", + "pos": 796, "timestamp": 2599615000000, "duration": 275000000, "timestamp_inferred": true, @@ -11268,8 +11240,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-799", - "pos": 799, + "id": "ep-xfm-S1E18-797", + "pos": 797, "timestamp": 2599890000000, "duration": 4160000000, "timestamp_inferred": false, @@ -11282,8 +11254,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-800", - "pos": 800, + "id": "ep-xfm-S1E18-798", + "pos": 798, "timestamp": 2604050000000, "duration": 5290000000, "timestamp_inferred": false, @@ -11296,8 +11268,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-801", - "pos": 801, + "id": "ep-xfm-S1E18-799", + "pos": 799, "timestamp": 2609340000000, "duration": 2031000000, "timestamp_inferred": true, @@ -11310,8 +11282,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-802", - "pos": 802, + "id": "ep-xfm-S1E18-800", + "pos": 800, "timestamp": 2611371000000, "duration": 188000000, "timestamp_inferred": true, @@ -11324,8 +11296,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-803", - "pos": 803, + "id": "ep-xfm-S1E18-801", + "pos": 801, "timestamp": 2611559000000, "duration": 1842000000, "timestamp_inferred": true, @@ -11338,8 +11310,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-804", - "pos": 804, + "id": "ep-xfm-S1E18-802", + "pos": 802, "timestamp": 2613401000000, "duration": 519000000, "timestamp_inferred": true, @@ -11352,8 +11324,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-805", - "pos": 805, + "id": "ep-xfm-S1E18-803", + "pos": 803, "timestamp": 2613920000000, "duration": 1086000000, "timestamp_inferred": true, @@ -11366,8 +11338,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-806", - "pos": 806, + "id": "ep-xfm-S1E18-804", + "pos": 804, "timestamp": 2615006000000, "duration": 330000000, "timestamp_inferred": true, @@ -11380,8 +11352,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-807", - "pos": 807, + "id": "ep-xfm-S1E18-805", + "pos": 805, "timestamp": 2615336000000, "duration": 2314000000, "timestamp_inferred": true, @@ -11394,8 +11366,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-808", - "pos": 808, + "id": "ep-xfm-S1E18-806", + "pos": 806, "timestamp": 2617650000000, "duration": 1800000000, "timestamp_inferred": true, @@ -11408,8 +11380,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-809", - "pos": 809, + "id": "ep-xfm-S1E18-807", + "pos": 807, "timestamp": 2619450000000, "duration": 2560000000, "timestamp_inferred": false, @@ -11422,8 +11394,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-810", - "pos": 810, + "id": "ep-xfm-S1E18-808", + "pos": 808, "timestamp": 2622010000000, "duration": 3590000000, "timestamp_inferred": false, @@ -11436,8 +11408,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-811", - "pos": 811, + "id": "ep-xfm-S1E18-809", + "pos": 809, "timestamp": 2625600000000, "duration": 1666000000, "timestamp_inferred": false, @@ -11450,8 +11422,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-812", - "pos": 812, + "id": "ep-xfm-S1E18-810", + "pos": 810, "timestamp": 2627266000000, "duration": 1576000000, "timestamp_inferred": true, @@ -11464,8 +11436,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-813", - "pos": 813, + "id": "ep-xfm-S1E18-811", + "pos": 811, "timestamp": 2628842000000, "duration": 856000000, "timestamp_inferred": true, @@ -11478,8 +11450,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-814", - "pos": 814, + "id": "ep-xfm-S1E18-812", + "pos": 812, "timestamp": 2629698000000, "duration": 2072000000, "timestamp_inferred": true, @@ -11492,8 +11464,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-815", - "pos": 815, + "id": "ep-xfm-S1E18-813", + "pos": 813, "timestamp": 2631770000000, "duration": 3108000000, "timestamp_inferred": true, @@ -11506,8 +11478,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-816", - "pos": 816, + "id": "ep-xfm-S1E18-814", + "pos": 814, "timestamp": 2634878000000, "duration": 5631000000, "timestamp_inferred": true, @@ -11520,8 +11492,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-817", - "pos": 817, + "id": "ep-xfm-S1E18-815", + "pos": 815, "timestamp": 2640509000000, "duration": 1941000000, "timestamp_inferred": true, @@ -11534,8 +11506,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-818", - "pos": 818, + "id": "ep-xfm-S1E18-816", + "pos": 816, "timestamp": 2642450000000, "duration": 3821000000, "timestamp_inferred": false, @@ -11548,8 +11520,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-819", - "pos": 819, + "id": "ep-xfm-S1E18-817", + "pos": 817, "timestamp": 2646271000000, "duration": 605000000, "timestamp_inferred": true, @@ -11562,8 +11534,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-820", - "pos": 820, + "id": "ep-xfm-S1E18-818", + "pos": 818, "timestamp": 2646876000000, "duration": 1491000000, "timestamp_inferred": true, @@ -11576,8 +11548,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-821", - "pos": 821, + "id": "ep-xfm-S1E18-819", + "pos": 819, "timestamp": 2648367000000, "duration": 3029000000, "timestamp_inferred": true, @@ -11590,8 +11562,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-822", - "pos": 822, + "id": "ep-xfm-S1E18-820", + "pos": 820, "timestamp": 2651396000000, "duration": 9554000000, "timestamp_inferred": true, @@ -11604,8 +11576,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-823", - "pos": 823, + "id": "ep-xfm-S1E18-821", + "pos": 821, "timestamp": 2660950000000, "duration": 93000000, "timestamp_inferred": true, @@ -11618,8 +11590,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-824", - "pos": 824, + "id": "ep-xfm-S1E18-822", + "pos": 822, "timestamp": 2661043000000, "duration": 2423000000, "timestamp_inferred": true, @@ -11632,8 +11604,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-825", - "pos": 825, + "id": "ep-xfm-S1E18-823", + "pos": 823, "timestamp": 2663466000000, "duration": 326000000, "timestamp_inferred": true, @@ -11646,8 +11618,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-826", - "pos": 826, + "id": "ep-xfm-S1E18-824", + "pos": 824, "timestamp": 2663792000000, "duration": 9418000000, "timestamp_inferred": true, @@ -11660,8 +11632,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-827", - "pos": 827, + "id": "ep-xfm-S1E18-825", + "pos": 825, "timestamp": 2673210000000, "duration": 2610000000, "timestamp_inferred": false, @@ -11674,8 +11646,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-828", - "pos": 828, + "id": "ep-xfm-S1E18-826", + "pos": 826, "timestamp": 2675820000000, "duration": 5080000000, "timestamp_inferred": false, @@ -11688,8 +11660,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-829", - "pos": 829, + "id": "ep-xfm-S1E18-827", + "pos": 827, "timestamp": 2680900000000, "duration": 4537000000, "timestamp_inferred": true, @@ -11702,8 +11674,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-830", - "pos": 830, + "id": "ep-xfm-S1E18-828", + "pos": 828, "timestamp": 2685437000000, "duration": 7940000000, "timestamp_inferred": true, @@ -11716,8 +11688,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-831", - "pos": 831, + "id": "ep-xfm-S1E18-829", + "pos": 829, "timestamp": 2693377000000, "duration": 1035000000, "timestamp_inferred": true, @@ -11730,8 +11702,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-832", - "pos": 832, + "id": "ep-xfm-S1E18-830", + "pos": 830, "timestamp": 2694412000000, "duration": 197000000, "timestamp_inferred": true, @@ -11744,8 +11716,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-833", - "pos": 833, + "id": "ep-xfm-S1E18-831", + "pos": 831, "timestamp": 2694609000000, "duration": 2321000000, "timestamp_inferred": true, @@ -11758,8 +11730,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-834", - "pos": 834, + "id": "ep-xfm-S1E18-832", + "pos": 832, "timestamp": 2696930000000, "duration": 5113000000, "timestamp_inferred": false, @@ -11772,8 +11744,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-835", - "pos": 835, + "id": "ep-xfm-S1E18-833", + "pos": 833, "timestamp": 2702043000000, "duration": 207000000, "timestamp_inferred": true, @@ -11786,8 +11758,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-836", - "pos": 836, + "id": "ep-xfm-S1E18-834", + "pos": 834, "timestamp": 2702250000000, "duration": 2500000000, "timestamp_inferred": false, @@ -11800,8 +11772,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-837", - "pos": 837, + "id": "ep-xfm-S1E18-835", + "pos": 835, "timestamp": 2704750000000, "duration": 12353000000, "timestamp_inferred": false, @@ -11814,8 +11786,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-838", - "pos": 838, + "id": "ep-xfm-S1E18-836", + "pos": 836, "timestamp": 2717103000000, "duration": 407000000, "timestamp_inferred": true, @@ -11828,8 +11800,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-839", - "pos": 839, + "id": "ep-xfm-S1E18-837", + "pos": 837, "timestamp": 2717510000000, "duration": 970000000, "timestamp_inferred": false, @@ -11842,8 +11814,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-840", - "pos": 840, + "id": "ep-xfm-S1E18-838", + "pos": 838, "timestamp": 2718480000000, "duration": 980000000, "timestamp_inferred": false, @@ -11856,8 +11828,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-841", - "pos": 841, + "id": "ep-xfm-S1E18-839", + "pos": 839, "timestamp": 2719460000000, "duration": 2060000000, "timestamp_inferred": true, @@ -11870,8 +11842,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-842", - "pos": 842, + "id": "ep-xfm-S1E18-840", + "pos": 840, "timestamp": 2721520000000, "duration": 3229000000, "timestamp_inferred": false, @@ -11884,8 +11856,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-843", - "pos": 843, + "id": "ep-xfm-S1E18-841", + "pos": 841, "timestamp": 2724749000000, "duration": 1821000000, "timestamp_inferred": true, @@ -11898,8 +11870,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-844", - "pos": 844, + "id": "ep-xfm-S1E18-842", + "pos": 842, "timestamp": 2726570000000, "duration": 5930000000, "timestamp_inferred": false, @@ -11912,8 +11884,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-845", - "pos": 845, + "id": "ep-xfm-S1E18-843", + "pos": 843, "timestamp": 2732500000000, "duration": 170000000, "timestamp_inferred": true, @@ -11926,8 +11898,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-846", - "pos": 846, + "id": "ep-xfm-S1E18-844", + "pos": 844, "timestamp": 2732670000000, "duration": 6818000000, "timestamp_inferred": false, @@ -11940,8 +11912,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-847", - "pos": 847, + "id": "ep-xfm-S1E18-845", + "pos": 845, "timestamp": 2739488000000, "duration": 604000000, "timestamp_inferred": true, @@ -11954,8 +11926,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-848", - "pos": 848, + "id": "ep-xfm-S1E18-846", + "pos": 846, "timestamp": 2740092000000, "duration": 2589000000, "timestamp_inferred": true, @@ -11968,8 +11940,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-849", - "pos": 849, + "id": "ep-xfm-S1E18-847", + "pos": 847, "timestamp": 2742681000000, "duration": 1209000000, "timestamp_inferred": true, @@ -11982,8 +11954,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-850", - "pos": 850, + "id": "ep-xfm-S1E18-848", + "pos": 848, "timestamp": 2743890000000, "duration": 4101000000, "timestamp_inferred": false, @@ -11996,8 +11968,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-851", - "pos": 851, + "id": "ep-xfm-S1E18-849", + "pos": 849, "timestamp": 2747991000000, "duration": 799000000, "timestamp_inferred": true, @@ -12010,8 +11982,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-852", - "pos": 852, + "id": "ep-xfm-S1E18-850", + "pos": 850, "timestamp": 2748790000000, "duration": 426000000, "timestamp_inferred": true, @@ -12024,8 +11996,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-853", - "pos": 853, + "id": "ep-xfm-S1E18-851", + "pos": 851, "timestamp": 2749216000000, "duration": 214000000, "timestamp_inferred": true, @@ -12038,8 +12010,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-854", - "pos": 854, + "id": "ep-xfm-S1E18-852", + "pos": 852, "timestamp": 2749430000000, "duration": 3217000000, "timestamp_inferred": false, @@ -12052,8 +12024,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-855", - "pos": 855, + "id": "ep-xfm-S1E18-853", + "pos": 853, "timestamp": 2752647000000, "duration": 1151000000, "timestamp_inferred": true, @@ -12066,8 +12038,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-856", - "pos": 856, + "id": "ep-xfm-S1E18-854", + "pos": 854, "timestamp": 2753798000000, "duration": 436000000, "timestamp_inferred": true, @@ -12080,8 +12052,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-857", - "pos": 857, + "id": "ep-xfm-S1E18-855", + "pos": 855, "timestamp": 2754234000000, "duration": 158000000, "timestamp_inferred": true, @@ -12094,8 +12066,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-858", - "pos": 858, + "id": "ep-xfm-S1E18-856", + "pos": 856, "timestamp": 2754392000000, "duration": 2661000000, "timestamp_inferred": true, @@ -12108,8 +12080,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-859", - "pos": 859, + "id": "ep-xfm-S1E18-857", + "pos": 857, "timestamp": 2757053000000, "duration": 436000000, "timestamp_inferred": true, @@ -12122,8 +12094,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-860", - "pos": 860, + "id": "ep-xfm-S1E18-858", + "pos": 858, "timestamp": 2757489000000, "duration": 1509000000, "timestamp_inferred": true, @@ -12136,8 +12108,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-861", - "pos": 861, + "id": "ep-xfm-S1E18-859", + "pos": 859, "timestamp": 2758998000000, "duration": 2899000000, "timestamp_inferred": true, @@ -12150,8 +12122,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-862", - "pos": 862, + "id": "ep-xfm-S1E18-860", + "pos": 860, "timestamp": 2761897000000, "duration": 2184000000, "timestamp_inferred": true, @@ -12164,8 +12136,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-863", - "pos": 863, + "id": "ep-xfm-S1E18-861", + "pos": 861, "timestamp": 2764081000000, "duration": 79000000, "timestamp_inferred": true, @@ -12178,8 +12150,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-864", - "pos": 864, + "id": "ep-xfm-S1E18-862", + "pos": 862, "timestamp": 2764160000000, "duration": 397000000, "timestamp_inferred": true, @@ -12192,8 +12164,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-865", - "pos": 865, + "id": "ep-xfm-S1E18-863", + "pos": 863, "timestamp": 2764557000000, "duration": 363000000, "timestamp_inferred": true, @@ -12206,8 +12178,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-866", - "pos": 866, + "id": "ep-xfm-S1E18-864", + "pos": 864, "timestamp": 2764920000000, "duration": 1760000000, "timestamp_inferred": false, @@ -12220,8 +12192,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-867", - "pos": 867, + "id": "ep-xfm-S1E18-865", + "pos": 865, "timestamp": 2766680000000, "duration": 949000000, "timestamp_inferred": false, @@ -12234,8 +12206,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-868", - "pos": 868, + "id": "ep-xfm-S1E18-866", + "pos": 866, "timestamp": 2767629000000, "duration": 611000000, "timestamp_inferred": true, @@ -12248,8 +12220,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-869", - "pos": 869, + "id": "ep-xfm-S1E18-867", + "pos": 867, "timestamp": 2768240000000, "duration": 4250000000, "timestamp_inferred": false, @@ -12262,8 +12234,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-870", - "pos": 870, + "id": "ep-xfm-S1E18-868", + "pos": 868, "timestamp": 2772490000000, "duration": 472000000, "timestamp_inferred": true, @@ -12276,8 +12248,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-871", - "pos": 871, + "id": "ep-xfm-S1E18-869", + "pos": 869, "timestamp": 2772962000000, "duration": 1416000000, "timestamp_inferred": true, @@ -12290,8 +12262,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-872", - "pos": 872, + "id": "ep-xfm-S1E18-870", + "pos": 870, "timestamp": 2774378000000, "duration": 2184000000, "timestamp_inferred": true, @@ -12304,8 +12276,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-873", - "pos": 873, + "id": "ep-xfm-S1E18-871", + "pos": 871, "timestamp": 2776562000000, "duration": 708000000, "timestamp_inferred": true, @@ -12318,8 +12290,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-874", - "pos": 874, + "id": "ep-xfm-S1E18-872", + "pos": 872, "timestamp": 2777270000000, "duration": 1830000000, "timestamp_inferred": true, @@ -12332,8 +12304,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-875", - "pos": 875, + "id": "ep-xfm-S1E18-873", + "pos": 873, "timestamp": 2779100000000, "duration": 118000000, "timestamp_inferred": true, @@ -12346,8 +12318,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-876", - "pos": 876, + "id": "ep-xfm-S1E18-874", + "pos": 874, "timestamp": 2779218000000, "duration": 3423000000, "timestamp_inferred": true, @@ -12360,8 +12332,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-877", - "pos": 877, + "id": "ep-xfm-S1E18-875", + "pos": 875, "timestamp": 2782641000000, "duration": 2184000000, "timestamp_inferred": true, @@ -12374,8 +12346,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-878", - "pos": 878, + "id": "ep-xfm-S1E18-876", + "pos": 876, "timestamp": 2784825000000, "duration": 118000000, "timestamp_inferred": true, @@ -12388,8 +12360,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-879", - "pos": 879, + "id": "ep-xfm-S1E18-877", + "pos": 877, "timestamp": 2784943000000, "duration": 1593000000, "timestamp_inferred": true, @@ -12402,8 +12374,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-880", - "pos": 880, + "id": "ep-xfm-S1E18-878", + "pos": 878, "timestamp": 2786536000000, "duration": 1239000000, "timestamp_inferred": true, @@ -12416,8 +12388,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-881", - "pos": 881, + "id": "ep-xfm-S1E18-879", + "pos": 879, "timestamp": 2787775000000, "duration": 3128000000, "timestamp_inferred": true, @@ -12430,8 +12402,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-882", - "pos": 882, + "id": "ep-xfm-S1E18-880", + "pos": 880, "timestamp": 2790903000000, "duration": 236000000, "timestamp_inferred": true, @@ -12444,8 +12416,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-883", - "pos": 883, + "id": "ep-xfm-S1E18-881", + "pos": 881, "timestamp": 2791139000000, "duration": 5667000000, "timestamp_inferred": true, @@ -12458,8 +12430,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-884", - "pos": 884, + "id": "ep-xfm-S1E18-882", + "pos": 882, "timestamp": 2796806000000, "duration": 590000000, "timestamp_inferred": true, @@ -12472,8 +12444,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-885", - "pos": 885, + "id": "ep-xfm-S1E18-883", + "pos": 883, "timestamp": 2797396000000, "duration": 118000000, "timestamp_inferred": true, @@ -12486,8 +12458,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-886", - "pos": 886, + "id": "ep-xfm-S1E18-884", + "pos": 884, "timestamp": 2797514000000, "duration": 4663000000, "timestamp_inferred": true, @@ -12500,8 +12472,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-887", - "pos": 887, + "id": "ep-xfm-S1E18-885", + "pos": 885, "timestamp": 2802177000000, "duration": 531000000, "timestamp_inferred": true, @@ -12514,8 +12486,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-888", - "pos": 888, + "id": "ep-xfm-S1E18-886", + "pos": 886, "timestamp": 2802708000000, "duration": 6611000000, "timestamp_inferred": true, @@ -12528,8 +12500,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-889", - "pos": 889, + "id": "ep-xfm-S1E18-887", + "pos": 887, "timestamp": 2809319000000, "duration": 236000000, "timestamp_inferred": true, @@ -12542,8 +12514,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-890", - "pos": 890, + "id": "ep-xfm-S1E18-888", + "pos": 888, "timestamp": 2809555000000, "duration": 3069000000, "timestamp_inferred": true, @@ -12556,8 +12528,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-891", - "pos": 891, + "id": "ep-xfm-S1E18-889", + "pos": 889, "timestamp": 2812624000000, "duration": 531000000, "timestamp_inferred": true, @@ -12570,8 +12542,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-892", - "pos": 892, + "id": "ep-xfm-S1E18-890", + "pos": 890, "timestamp": 2813155000000, "duration": 245000000, "timestamp_inferred": true, @@ -12584,8 +12556,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-893", - "pos": 893, + "id": "ep-xfm-S1E18-891", + "pos": 891, "timestamp": 2813400000000, "duration": 1480000000, "timestamp_inferred": false, @@ -12598,8 +12570,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-894", - "pos": 894, + "id": "ep-xfm-S1E18-892", + "pos": 892, "timestamp": 2814880000000, "duration": 8302000000, "timestamp_inferred": false, @@ -12612,8 +12584,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-895", - "pos": 895, + "id": "ep-xfm-S1E18-893", + "pos": 893, "timestamp": 2823182000000, "duration": 360000000, "timestamp_inferred": true, @@ -12626,8 +12598,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-896", - "pos": 896, + "id": "ep-xfm-S1E18-894", + "pos": 894, "timestamp": 2823542000000, "duration": 4176000000, "timestamp_inferred": true, @@ -12640,8 +12612,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-897", - "pos": 897, + "id": "ep-xfm-S1E18-895", + "pos": 895, "timestamp": 2827718000000, "duration": 6084000000, "timestamp_inferred": true, @@ -12654,8 +12626,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-898", - "pos": 898, + "id": "ep-xfm-S1E18-896", + "pos": 896, "timestamp": 2833802000000, "duration": 154000000, "timestamp_inferred": true, @@ -12668,8 +12640,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-899", - "pos": 899, + "id": "ep-xfm-S1E18-897", + "pos": 897, "timestamp": 2833956000000, "duration": 206000000, "timestamp_inferred": true, @@ -12682,8 +12654,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-900", - "pos": 900, + "id": "ep-xfm-S1E18-898", + "pos": 898, "timestamp": 2834162000000, "duration": 1448000000, "timestamp_inferred": true, @@ -12696,8 +12668,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-901", - "pos": 901, + "id": "ep-xfm-S1E18-899", + "pos": 899, "timestamp": 2835610000000, "duration": 12200000000, "timestamp_inferred": false, @@ -12710,8 +12682,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-902", - "pos": 902, + "id": "ep-xfm-S1E18-900", + "pos": 900, "timestamp": 2847810000000, "duration": 1229000000, "timestamp_inferred": true, @@ -12724,8 +12696,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-903", - "pos": 903, + "id": "ep-xfm-S1E18-901", + "pos": 901, "timestamp": 2849039000000, "duration": 196000000, "timestamp_inferred": true, @@ -12738,8 +12710,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-904", - "pos": 904, + "id": "ep-xfm-S1E18-902", + "pos": 902, "timestamp": 2849235000000, "duration": 1869000000, "timestamp_inferred": true, @@ -12752,8 +12724,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-905", - "pos": 905, + "id": "ep-xfm-S1E18-903", + "pos": 903, "timestamp": 2851104000000, "duration": 934000000, "timestamp_inferred": true, @@ -12766,8 +12738,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-906", - "pos": 906, + "id": "ep-xfm-S1E18-904", + "pos": 904, "timestamp": 2852038000000, "duration": 3640000000, "timestamp_inferred": true, @@ -12780,8 +12752,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-907", - "pos": 907, + "id": "ep-xfm-S1E18-905", + "pos": 905, "timestamp": 2855678000000, "duration": 742000000, "timestamp_inferred": true, @@ -12794,8 +12766,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-908", - "pos": 908, + "id": "ep-xfm-S1E18-906", + "pos": 906, "timestamp": 2856420000000, "duration": 13289000000, "timestamp_inferred": false, @@ -12808,8 +12780,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-909", - "pos": 909, + "id": "ep-xfm-S1E18-907", + "pos": 907, "timestamp": 2869709000000, "duration": 3761000000, "timestamp_inferred": true, @@ -12822,8 +12794,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-910", - "pos": 910, + "id": "ep-xfm-S1E18-908", + "pos": 908, "timestamp": 2873470000000, "duration": 6519000000, "timestamp_inferred": true, @@ -12836,8 +12808,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-911", - "pos": 911, + "id": "ep-xfm-S1E18-909", + "pos": 909, "timestamp": 2879989000000, "duration": 1755000000, "timestamp_inferred": true, @@ -12850,8 +12822,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-912", - "pos": 912, + "id": "ep-xfm-S1E18-910", + "pos": 910, "timestamp": 2881744000000, "duration": 1253000000, "timestamp_inferred": true, @@ -12864,8 +12836,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-913", - "pos": 913, + "id": "ep-xfm-S1E18-911", + "pos": 911, "timestamp": 2882997000000, "duration": 1755000000, "timestamp_inferred": true, @@ -12878,8 +12850,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-914", - "pos": 914, + "id": "ep-xfm-S1E18-912", + "pos": 912, "timestamp": 2884752000000, "duration": 12536000000, "timestamp_inferred": true, @@ -12892,8 +12864,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-915", - "pos": 915, + "id": "ep-xfm-S1E18-913", + "pos": 913, "timestamp": 2897288000000, "duration": 12035000000, "timestamp_inferred": true, @@ -12906,8 +12878,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-916", - "pos": 916, + "id": "ep-xfm-S1E18-914", + "pos": 914, "timestamp": 2909323000000, "duration": 48141000000, "timestamp_inferred": true, @@ -12920,8 +12892,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-917", - "pos": 917, + "id": "ep-xfm-S1E18-915", + "pos": 915, "timestamp": 2957464000000, "duration": 1253000000, "timestamp_inferred": true, @@ -12934,8 +12906,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-918", - "pos": 918, + "id": "ep-xfm-S1E18-916", + "pos": 916, "timestamp": 2958717000000, "duration": 2005000000, "timestamp_inferred": true, @@ -12948,8 +12920,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-919", - "pos": 919, + "id": "ep-xfm-S1E18-917", + "pos": 917, "timestamp": 2960722000000, "duration": 6268000000, "timestamp_inferred": true, @@ -12962,8 +12934,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-920", - "pos": 920, + "id": "ep-xfm-S1E18-918", + "pos": 918, "timestamp": 2966990000000, "duration": 4513000000, "timestamp_inferred": true, @@ -12976,8 +12948,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-921", - "pos": 921, + "id": "ep-xfm-S1E18-919", + "pos": 919, "timestamp": 2971503000000, "duration": 5014000000, "timestamp_inferred": true, @@ -12990,8 +12962,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-922", - "pos": 922, + "id": "ep-xfm-S1E18-920", + "pos": 920, "timestamp": 2976517000000, "duration": 501000000, "timestamp_inferred": true, @@ -13004,8 +12976,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-923", - "pos": 923, + "id": "ep-xfm-S1E18-921", + "pos": 921, "timestamp": 2977018000000, "duration": 9026000000, "timestamp_inferred": true, @@ -13018,8 +12990,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-924", - "pos": 924, + "id": "ep-xfm-S1E18-922", + "pos": 922, "timestamp": 2986044000000, "duration": 1002000000, "timestamp_inferred": true, @@ -13032,8 +13004,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-925", - "pos": 925, + "id": "ep-xfm-S1E18-923", + "pos": 923, "timestamp": 2987046000000, "duration": 5516000000, "timestamp_inferred": true, @@ -13046,8 +13018,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-926", - "pos": 926, + "id": "ep-xfm-S1E18-924", + "pos": 924, "timestamp": 2992562000000, "duration": 752000000, "timestamp_inferred": true, @@ -13060,8 +13032,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-927", - "pos": 927, + "id": "ep-xfm-S1E18-925", + "pos": 925, "timestamp": 2993314000000, "duration": 17300000000, "timestamp_inferred": true, @@ -13074,8 +13046,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-928", - "pos": 928, + "id": "ep-xfm-S1E18-926", + "pos": 926, "timestamp": 3010614000000, "duration": 14041000000, "timestamp_inferred": true, @@ -13088,8 +13060,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-929", - "pos": 929, + "id": "ep-xfm-S1E18-927", + "pos": 927, "timestamp": 3024655000000, "duration": 1253000000, "timestamp_inferred": true, @@ -13102,8 +13074,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-930", - "pos": 930, + "id": "ep-xfm-S1E18-928", + "pos": 928, "timestamp": 3025908000000, "duration": 13790000000, "timestamp_inferred": true, @@ -13116,8 +13088,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-931", - "pos": 931, + "id": "ep-xfm-S1E18-929", + "pos": 929, "timestamp": 3039698000000, "duration": 3008000000, "timestamp_inferred": true, @@ -13130,8 +13102,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-932", - "pos": 932, + "id": "ep-xfm-S1E18-930", + "pos": 930, "timestamp": 3042706000000, "duration": 17050000000, "timestamp_inferred": true, @@ -13144,8 +13116,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-933", - "pos": 933, + "id": "ep-xfm-S1E18-931", + "pos": 931, "timestamp": 3059756000000, "duration": 8775000000, "timestamp_inferred": true, @@ -13158,8 +13130,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-934", - "pos": 934, + "id": "ep-xfm-S1E18-932", + "pos": 932, "timestamp": 3068531000000, "duration": 2507000000, "timestamp_inferred": true, @@ -13172,8 +13144,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-935", - "pos": 935, + "id": "ep-xfm-S1E18-933", + "pos": 933, "timestamp": 3071038000000, "duration": 26828000000, "timestamp_inferred": true, @@ -13186,8 +13158,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-936", - "pos": 936, + "id": "ep-xfm-S1E18-934", + "pos": 934, "timestamp": 3097866000000, "duration": 31341000000, "timestamp_inferred": true, @@ -13200,8 +13172,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-937", - "pos": 937, + "id": "ep-xfm-S1E18-935", + "pos": 935, "timestamp": 3129207000000, "duration": 30589000000, "timestamp_inferred": true, @@ -13214,8 +13186,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-938", - "pos": 938, + "id": "ep-xfm-S1E18-936", + "pos": 936, "timestamp": 3159796000000, "duration": 752000000, "timestamp_inferred": true, @@ -13228,8 +13200,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-939", - "pos": 939, + "id": "ep-xfm-S1E18-937", + "pos": 937, "timestamp": 3160548000000, "duration": 2005000000, "timestamp_inferred": true, @@ -13242,8 +13214,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-940", - "pos": 940, + "id": "ep-xfm-S1E18-938", + "pos": 938, "timestamp": 3162553000000, "duration": 3008000000, "timestamp_inferred": true, @@ -13256,8 +13228,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-941", - "pos": 941, + "id": "ep-xfm-S1E18-939", + "pos": 939, "timestamp": 3165561000000, "duration": 7271000000, "timestamp_inferred": true, @@ -13270,8 +13242,8 @@ "placeholder": false }, { - "id": "ep-xfm-S1E18-942", - "pos": 942, + "id": "ep-xfm-S1E18-940", + "pos": 940, "timestamp": 3172832000000, "duration": 3527000000, "timestamp_inferred": true, @@ -13328,100 +13300,101 @@ { "description": "Come on love, in any given capitalist environment the proletariat will revolt against the repression.", "start_pos": 243, - "end_pos": 294 + "end_pos": 292 }, { "description": "Karl's theory on how haggis is made.", - "start_pos": 302, - "end_pos": 316 + "start_pos": 300, + "end_pos": 314 }, { "description": "What's the plural of mongoose?", - "start_pos": 316, - "end_pos": 325 + "start_pos": 314, + "end_pos": 323 }, { "description": "The annoying sound of Bob Dylan.", - "start_pos": 329, - "end_pos": 341 + "start_pos": 327, + "end_pos": 339 }, { "description": "Leo Sayer once pulled off a woman's hand.", - "start_pos": 342, - "end_pos": 362 + "start_pos": 340, + "end_pos": 360 }, { "description": "White van karl: Kylie Minogue slagged off Britney Spears", - "start_pos": 368, - "end_pos": 401 + "start_pos": 366, + "end_pos": 399 }, { "description": "White van karl: New York’s ex-police chief says we need more bobbies on the beat.", - "start_pos": 402, - "end_pos": 423 + "start_pos": 400, + "end_pos": 421 }, { "description": "White van karl: Blackpool to become a British Las Vegas.", - "start_pos": 423, - "end_pos": 456 + "start_pos": 421, + "end_pos": 454 }, { "description": "White van karl: So Solid Crew’s Ashley Walters jailed for 18 months (+ Karl's So Solid Crew's dream)", - "start_pos": 456, - "end_pos": 498 + "start_pos": 454, + "end_pos": 496 }, { "description": "White van karl: Halle Berry becomes the first black woman to win the Best Actress Oscar (Karl's gold certificate)", - "start_pos": 498, - "end_pos": 519 + "start_pos": 496, + "end_pos": 517 }, { "description": "Is there a way karl could see the White Van Karl questions before the show?", - "start_pos": 536, - "end_pos": 562 + "start_pos": 534, + "end_pos": 560 }, { "description": "Educating Karl: Aesop’s Fables", - "start_pos": 562, - "end_pos": 649 + "start_pos": 560, + "end_pos": 647 }, { "description": "Karl gets a book of quotations.", - "start_pos": 660, - "end_pos": 733 + "start_pos": 658, + "end_pos": 731 }, { "description": "The Xfm gig guide.", - "start_pos": 754, - "end_pos": 764 + "start_pos": 752, + "end_pos": 762 }, { "description": "Ladies and gentlemen, please welcome to the stage...", - "start_pos": 766, - "end_pos": 783 + "start_pos": 764, + "end_pos": 781 }, { "description": "Karl says \"cocks\" aggressively.", - "start_pos": 794, - "end_pos": 811 + "start_pos": 792, + "end_pos": 809 }, { "description": "\"The tortoise has a shell to protect\" it and other tortoise facts.", - "start_pos": 818, - "end_pos": 844 + "start_pos": 816, + "end_pos": 842 }, { "description": "The true meaning of Easter.", - "start_pos": 844, - "end_pos": 883 + "start_pos": 842, + "end_pos": 881 }, { "description": "Karl's not well today (but Steve's the one that's a hypochondriac)", - "start_pos": 883, - "end_pos": 901 + "start_pos": 881, + "end_pos": 899 } ], "contributors": [ + "MonotoneCreeper", "boneykingoflimbs", "that-necron-guy", "warmans" @@ -13434,8 +13407,8 @@ }, { "description": "[Article on The Guardian](https://www.theguardian.com/uk/2002/mar/25/2)", - "start_pos": 456, - "end_pos": 457 + "start_pos": 454, + "end_pos": 455 } ], "media": { diff --git a/server/var/data/episodes/ep-xfm-S2E51.json b/server/var/data/episodes/ep-xfm-S2E51.json index 93941878..79ad8263 100644 --- a/server/var/data/episodes/ep-xfm-S2E51.json +++ b/server/var/data/episodes/ep-xfm-S2E51.json @@ -7,7 +7,7 @@ "episode": 51, "name": "", "summary": "", - "version": "0.0.1", + "version": "0.0.2", "release_date": "2003-08-16T00:00:00Z", "incomplete": false, "bestof": false, @@ -2113,21 +2113,21 @@ "id": "ep-xfm-S2E51-150", "pos": 150, "timestamp": 519000000000, - "duration": 18831000000, + "duration": 18815000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", "actor": "ricky", "metadata": null, - "content": "But we did do something- because you got confused and you said- oh, God, it's like a child or a cat when it's confused. He went: \"Steve reckons in ancient Greece, right? It was better to shag a bloke than a woman.\" And I went well, yeah, about the male being sort of a first class citizen.", + "content": "But we did do something- because you got confused and you said- oh, God, it's like a child or a cat when it's confused. He went: \"Steve reckons in ancient Greece, right? It was better to shag a bloke than a woman.\" And I went well, yeah, about the male being sort of a first class citizen.", "notable": false, "placeholder": false }, { "id": "ep-xfm-S2E51-151", "pos": 151, - "timestamp": 537831000000, - "duration": 259000000, + "timestamp": 537815000000, + "duration": 260000000, "timestamp_inferred": true, "timestamp_distance": 1, "type": "chat", @@ -2140,8 +2140,8 @@ { "id": "ep-xfm-S2E51-152", "pos": 152, - "timestamp": 538090000000, - "duration": 5910000000, + "timestamp": 538075000000, + "duration": 5925000000, "timestamp_inferred": true, "timestamp_distance": 2, "type": "chat", @@ -3611,7 +3611,7 @@ "id": "ep-xfm-S2E51-257", "pos": 257, "timestamp": 919000000000, - "duration": 219000000, + "duration": 220000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", @@ -3624,8 +3624,8 @@ { "id": "ep-xfm-S2E51-258", "pos": 258, - "timestamp": 919219000000, - "duration": 7081000000, + "timestamp": 919220000000, + "duration": 7098000000, "timestamp_inferred": true, "timestamp_distance": 1, "type": "chat", @@ -3638,8 +3638,8 @@ { "id": "ep-xfm-S2E51-259", "pos": 259, - "timestamp": 926300000000, - "duration": 713000000, + "timestamp": 926318000000, + "duration": 715000000, "timestamp_inferred": true, "timestamp_distance": 2, "type": "chat", @@ -3652,22 +3652,22 @@ { "id": "ep-xfm-S2E51-260", "pos": 260, - "timestamp": 927013000000, - "duration": 7684000000, + "timestamp": 927033000000, + "duration": 7648000000, "timestamp_inferred": true, "timestamp_distance": 3, "type": "chat", "actor": "karl", "metadata": null, - "content": "You just heard her go \"Oughhh\" And she hit the floor because we were all sat on top of the desk watching this. I wasn't interested in that.", + "content": "You just heard her go \"Oughhh\" And she hit the floor because we were all sat on top of the desk watching this. I wasn't interested in that.", "notable": false, "placeholder": false }, { "id": "ep-xfm-S2E51-261", "pos": 261, - "timestamp": 934697000000, - "duration": 109000000, + "timestamp": 934681000000, + "duration": 110000000, "timestamp_inferred": true, "timestamp_distance": 4, "type": "chat", @@ -3680,8 +3680,8 @@ { "id": "ep-xfm-S2E51-262", "pos": 262, - "timestamp": 934806000000, - "duration": 3568000000, + "timestamp": 934791000000, + "duration": 3576000000, "timestamp_inferred": true, "timestamp_distance": 5, "type": "chat", @@ -3694,8 +3694,8 @@ { "id": "ep-xfm-S2E51-263", "pos": 263, - "timestamp": 938374000000, - "duration": 1152000000, + "timestamp": 938367000000, + "duration": 1155000000, "timestamp_inferred": true, "timestamp_distance": 6, "type": "chat", @@ -3708,8 +3708,8 @@ { "id": "ep-xfm-S2E51-264", "pos": 264, - "timestamp": 939526000000, - "duration": 1646000000, + "timestamp": 939522000000, + "duration": 1650000000, "timestamp_inferred": true, "timestamp_distance": 7, "type": "chat", @@ -7229,7 +7229,7 @@ "type": "chat", "actor": "ricky", "metadata": null, - "content": "Work. Too much work.", + "content": "Word. Too much word.", "notable": false, "placeholder": false }, @@ -7699,21 +7699,21 @@ "id": "ep-xfm-S2E51-549", "pos": 549, "timestamp": 2198000000000, - "duration": 19421000000, + "duration": 19401000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", "actor": "karl", "metadata": null, - "content": "So she said \"Right, wait ten minutes, and I'll sort it out. So I was sat there, looking at it, trying to work it out before she had to look at it. I was like \"no, I forget this!\" Now, what he was saying is, if... you send a man to the moon, right?", + "content": "So she said \"Right, wait ten minutes, and I'll sort it out. So I was sat there, looking at it, trying to work it out before she had to look at it. I was like \"no, I forget this!\" Now, what he was saying is, if... you send a man to the moon, right?", "notable": false, "placeholder": false }, { "id": "ep-xfm-S2E51-550", "pos": 550, - "timestamp": 2217421000000, - "duration": 313000000, + "timestamp": 2217401000000, + "duration": 314000000, "timestamp_inferred": true, "timestamp_distance": 1, "type": "chat", @@ -7726,8 +7726,8 @@ { "id": "ep-xfm-S2E51-551", "pos": 551, - "timestamp": 2217734000000, - "duration": 6266000000, + "timestamp": 2217715000000, + "duration": 6285000000, "timestamp_inferred": true, "timestamp_distance": 2, "type": "chat", @@ -8049,21 +8049,21 @@ "id": "ep-xfm-S2E51-574", "pos": 574, "timestamp": 2288000000000, - "duration": 12290000000, + "duration": 12286000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", "actor": "ricky", "metadata": null, - "content": "I will explain to you. Basically, velocity equals difference over time. When velocity doesn't change and nor does distance, time has to. That's his theory.", + "content": "I will explain to you. Basically, velocity equals difference over time. When velocity doesn't change and nor does distance, time has to. That's his theory.", "notable": false, "placeholder": false }, { "id": "ep-xfm-S2E51-575", "pos": 575, - "timestamp": 2300290000000, - "duration": 315000000, + "timestamp": 2300286000000, + "duration": 317000000, "timestamp_inferred": true, "timestamp_distance": 1, "type": "chat", @@ -8076,8 +8076,8 @@ { "id": "ep-xfm-S2E51-576", "pos": 576, - "timestamp": 2300605000000, - "duration": 395000000, + "timestamp": 2300603000000, + "duration": 397000000, "timestamp_inferred": true, "timestamp_distance": 2, "type": "chat", @@ -13355,21 +13355,21 @@ "id": "ep-xfm-S2E51-953", "pos": 953, "timestamp": 3574000000000, - "duration": 7054000000, + "duration": 7018000000, "timestamp_inferred": false, "timestamp_distance": 0, "type": "chat", "actor": "ricky", "metadata": null, - "content": "Well, there's a couple of things there... It could be another upshot and you know, an instinct is part of the genetics ending out", + "content": "Well, there's a couple of things there... It could be another upshot and you know, an instinct is part of the genetics ending out", "notable": false, "placeholder": false }, { "id": "ep-xfm-S2E51-954", "pos": 954, - "timestamp": 3581054000000, - "duration": 868000000, + "timestamp": 3581018000000, + "duration": 870000000, "timestamp_inferred": true, "timestamp_distance": 1, "type": "chat", @@ -13382,8 +13382,8 @@ { "id": "ep-xfm-S2E51-955", "pos": 955, - "timestamp": 3581922000000, - "duration": 9930000000, + "timestamp": 3581888000000, + "duration": 9955000000, "timestamp_inferred": true, "timestamp_distance": 2, "type": "chat", @@ -13396,8 +13396,8 @@ { "id": "ep-xfm-S2E51-956", "pos": 956, - "timestamp": 3591852000000, - "duration": 1193000000, + "timestamp": 3591843000000, + "duration": 1196000000, "timestamp_inferred": true, "timestamp_distance": 3, "type": "chat", @@ -13410,8 +13410,8 @@ { "id": "ep-xfm-S2E51-957", "pos": 957, - "timestamp": 3593045000000, - "duration": 1955000000, + "timestamp": 3593039000000, + "duration": 1961000000, "timestamp_inferred": true, "timestamp_distance": 4, "type": "chat", @@ -13883,6 +13883,7 @@ } ], "contributors": [ + "ThatIsTheLonging", "warmans", "wontbemad" ],