sync mode on
Deploy / Deploy (push) Successful in 1m16s Details

This commit is contained in:
JotaChina 2025-10-26 16:43:01 -03:00
parent d9166f6967
commit 07562989cf
7049 changed files with 433376 additions and 1182 deletions

View File

@ -186,6 +186,52 @@ body.sidebar-hidden .sample-browser {
border: 1px solid var(--border-color-light);
}
/* Estilo para o novo menu de contexto da régua */
#ruler-context-menu {
display: none;
position: fixed;
z-index: 10000;
background-color: var(--background-dark);
border: 1px solid var(--border-color-dark);
border-radius: 4px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
font-size: 0.8rem;
padding: 5px 0;
min-width: 150px;
}
#ruler-context-menu > div {
padding: 6px 15px;
cursor: pointer;
color: var(--text-light);
}
#ruler-context-menu > div:hover {
background-color: var(--accent-blue);
color: #fff;
}
/* Estilo para clipes "recortados" (cut) */
.timeline-clip.cut {
opacity: 0.5;
border-style: dashed;
}
/* =============================================== */
/* SALA COMPARTILHADA
/* =============================================== */
#create-room-btn {
width: auto; /* Permite que o botão se ajuste ao texto */
padding-left: 12px;
padding-right: 16px;
color: var(--text-light); /* Ou a cor que preferir */
}
#create-room-btn:hover {
background-color: var(--accent-color); /* Destaque ao passar o mouse */
color: var(--text-dark);
}
/* =============================================== */
/* EDITOR DE BASES (BEAT EDITOR / STEP SEQUENCER)
/* =============================================== */

View File

@ -1,5 +1,7 @@
// js/audio.js
import * as Tone from "https://esm.sh/tone";
// O contexto de áudio agora será gerenciado principalmente pelo Tone.js.
// Esta função garante que ele seja iniciado por uma interação do usuário.
export function initializeAudioContext() {
@ -9,10 +11,13 @@ export function initializeAudioContext() {
}
}
// Funções de acesso ao contexto global do Tone.js
// ✅ DEPOIS: devolve o *raw* AudioContext (nativo do Web Audio)
export function getAudioContext() {
return Tone.context;
// compatível com versões novas/antigas do Tone
const ctx = typeof Tone.getContext === 'function' ? Tone.getContext() : Tone.context;
return ctx.rawContext || ctx; // rawContext quando existir
}
export function getMainGainNode() {
return Tone.Destination;
}

View File

@ -1,8 +1,10 @@
// js/audio/audio_audio.js
import { appState } from "../state.js";
import { updateAudioEditorUI, updatePlayheadVisual, resetPlayheadVisual } from "./audio_ui.js";
import { initializeAudioContext, getAudioContext } from "../audio.js";
import { initializeAudioContext, getAudioContext, getMainGainNode } from "../audio.js";
import { getPixelsPerSecond } from "../utils.js";
// 🔊 ADIÇÃO: usar a MESMA instância do Tone que o projeto usa
import * as Tone from "https://esm.sh/tone";
// --- Configurações do Scheduler ---
const LOOKAHEAD_INTERVAL_MS = 25.0;
@ -16,16 +18,17 @@ let animationFrameId = null;
// Sincronização de Tempo
let startTime = 0;
let seekTime = 0;
let logicalPlaybackTime = 0;
// (seek/logical ficam em appState.audio)
// Configurações de Loop
let isLoopActive = false;
let loopStartTimeSec = 0;
let loopEndTimeSec = 8;
// estado runtime
const runtimeClipState = new Map();
const scheduledNodes = new Map();
// ⚠️ agora armazenamos Tone.Player em vez de BufferSource
const scheduledNodes = new Map(); // eventId -> { player, clipId }
let nextEventId = 0;
const callbacks = {
@ -42,49 +45,78 @@ function _getSecondsPerBeat() { return 60.0 / _getBpm(); }
function _convertBeatToSeconds(beat) { return beat * _getSecondsPerBeat(); }
function _convertSecondsToBeat(seconds) { return seconds / _getSecondsPerBeat(); }
// garante um único contexto — o rawContext do Tone
function _initContext() {
if (!audioCtx) {
initializeAudioContext();
audioCtx = getAudioContext();
audioCtx = getAudioContext(); // deve ser o rawContext do Tone
}
}
// --- Lógica Principal do Scheduler (sem alterações) ---
// helper: normaliza AudioBuffer → ToneAudioBuffer (mesmo contexto)
function _toToneBuffer(buffer) {
if (!buffer) return null;
if (buffer._buffer) return buffer; // já é Tone.ToneAudioBuffer
const tab = new Tone.ToneAudioBuffer();
tab._buffer = buffer; // injeta o AudioBuffer (já no rawContext do Tone)
return tab;
}
// --- Lógica Principal do Scheduler (mantida) ---
function _scheduleClip(clip, absolutePlayTime, durationSec) {
if (!clip.buffer) {
console.warn(`Clip ${clip.id} não possui áudio buffer carregado.`);
return;
}
if (!clip.gainNode || !clip.pannerNode) {
console.warn(`Clip ${clip.id} não possui gainNode ou pannerNode.`);
return;
}
const source = new Tone.BufferSource(clip.buffer);
source.connect(clip.gainNode);
// --- CORREÇÃO: Aplica o pitch (que pode ser de stretch ou wheel) ---
if (clip.pitch && clip.pitch !== 0) {
source.playbackRate.value = Math.pow(2, clip.pitch / 12);
} else {
source.playbackRate.value = 1.0; // Garante que o modo 'trim' toque normal
}
// --- FIM DA CORREÇÃO ---
// usamos Player .sync() conectando no mesmo grafo do Tone
const toneBuf = _toToneBuffer(clip.buffer);
if (!toneBuf) return;
// cadeia de ganho/pan por clipe (se já tiver no estado, use; aqui garantimos)
const gain = clip.gainNode instanceof Tone.Gain ? clip.gainNode : new Tone.Gain(clip.volume ?? 1);
const pan = clip.pannerNode instanceof Tone.Panner ? clip.pannerNode : new Tone.Panner(clip.pan ?? 0);
// conecta no destino principal (é um ToneAudioNode)
try {
gain.disconnect(); // evita duplicatas caso exista de execuções anteriores
} catch {}
try {
pan.disconnect();
} catch {}
gain.connect(pan).connect(getMainGainNode());
// player sincronizado no Transport
const player = new Tone.Player(toneBuf).sync().connect(gain);
// aplica pitch como rate (semitons → rate)
const rate = (clip.pitch && clip.pitch !== 0) ? Math.pow(2, clip.pitch / 12) : 1;
player.playbackRate = rate;
// calculamos o "when" no tempo do Transport:
// absolutePlayTime é em audioCtx.currentTime; o "zero" lógico foi quando demos play:
// logical = (now - startTime) + seek; => occurrence = (absolutePlayTime - startTime) + seek
const occurrenceInTransportSec = (absolutePlayTime - startTime) + (appState.audio.audioEditorSeekTime || 0);
const offset = clip.offsetInSeconds ?? clip.offset ?? 0;
const dur = durationSec ?? toneBuf.duration;
// agenda
player.start(occurrenceInTransportSec, offset, dur);
const eventId = nextEventId++;
const clipOffset = clip.offsetInSeconds || clip.offset || 0;
source.start(absolutePlayTime, clipOffset, durationSec);
scheduledNodes.set(eventId, { sourceNode: source, clipId: clip.id });
scheduledNodes.set(eventId, { player, clipId: clip.id });
if (callbacks.onClipScheduled) {
callbacks.onClipScheduled(clip);
}
source.onended = () => {
// quando parar naturalmente, limpamos runtime
player.onstop = () => {
_handleClipEnd(eventId, clip.id);
source.dispose();
try { player.unsync(); } catch {}
try { player.dispose(); } catch {}
};
}
@ -94,7 +126,7 @@ function _handleClipEnd(eventId, clipId) {
if (callbacks.onClipPlayed) {
const clip = appState.audio.clips.find(c => c.id == clipId);
if(clip) callbacks.onClipPlayed(clip);
if (clip) callbacks.onClipPlayed(clip);
}
}
@ -102,26 +134,18 @@ function _schedulerTick() {
if (!isPlaying || !audioCtx) return;
const now = audioCtx.currentTime;
const logicalTime = (now - startTime) + seekTime;
const logicalTime = (now - startTime) + (appState.audio.audioEditorSeekTime || 0);
const scheduleWindowStartSec = logicalTime;
const scheduleWindowEndSec = logicalTime + SCHEDULE_AHEAD_TIME_SEC;
for (const clip of appState.audio.clips) {
const clipRuntime = runtimeClipState.get(clip.id) || { isScheduled: false };
if (clipRuntime.isScheduled) {
continue;
}
if (!clip.buffer) {
continue;
}
if (clipRuntime.isScheduled) continue;
if (!clip.buffer) continue;
const clipStartTimeSec = clip.startTimeInSeconds;
const clipDurationSec = clip.durationInSeconds;
if (typeof clipStartTimeSec === 'undefined' || typeof clipDurationSec === 'undefined') {
continue;
}
if (typeof clipStartTimeSec === 'undefined' || typeof clipDurationSec === 'undefined') continue;
let occurrenceStartTimeSec = clipStartTimeSec;
@ -137,11 +161,12 @@ function _schedulerTick() {
occurrenceStartTimeSec += loopsMissed * loopDuration;
}
}
if (
occurrenceStartTimeSec >= scheduleWindowStartSec &&
occurrenceStartTimeSec < scheduleWindowEndSec
) {
const absolutePlayTime = startTime + (occurrenceStartTimeSec - seekTime);
const absolutePlayTime = startTime + (occurrenceStartTimeSec - (appState.audio.audioEditorSeekTime || 0));
_scheduleClip(clip, absolutePlayTime, clipDurationSec);
clipRuntime.isScheduled = true;
runtimeClipState.set(clip.id, clipRuntime);
@ -149,23 +174,26 @@ function _schedulerTick() {
}
}
// --- Loop de Animação (sem alterações) ---
// --- Loop de Animação (mantido) ---
function _animationLoop() {
if (!isPlaying) {
animationFrameId = null;
return;
}
const now = audioCtx.currentTime;
let newLogicalTime = (now - startTime) + seekTime;
let newLogicalTime = (now - startTime) + (appState.audio.audioEditorSeekTime || 0);
if (isLoopActive) {
if (newLogicalTime >= loopEndTimeSec) {
const loopDuration = loopEndTimeSec - loopStartTimeSec;
newLogicalTime = loopStartTimeSec + ((newLogicalTime - loopStartTimeSec) % loopDuration);
startTime = now;
seekTime = newLogicalTime;
appState.audio.audioEditorSeekTime = newLogicalTime;
}
}
logicalPlaybackTime = newLogicalTime;
appState.audio.audioEditorLogicalTime = newLogicalTime;
if (!isLoopActive) {
let maxTime = 0;
appState.audio.clips.forEach(clip => {
@ -174,15 +202,14 @@ function _animationLoop() {
const endTime = clipStartTime + clipDuration;
if (endTime > maxTime) maxTime = endTime;
});
if (maxTime > 0 && logicalPlaybackTime >= maxTime) {
if (maxTime > 0 && appState.audio.audioEditorLogicalTime >= maxTime) {
stopAudioEditorPlayback(true); // Rebobina no fim
resetPlayheadVisual();
return;
}
}
const pixelsPerSecond = getPixelsPerSecond();
const newPositionPx = logicalPlaybackTime * pixelsPerSecond;
const newPositionPx = appState.audio.audioEditorLogicalTime * pixelsPerSecond;
updatePlayheadVisual(newPositionPx);
animationFrameId = requestAnimationFrame(_animationLoop);
}
@ -196,79 +223,111 @@ export function updateTransportLoop() {
runtimeClipState.clear();
scheduledNodes.forEach(nodeData => {
// --- CORREÇÃO BUG 1: Remove a linha 'onended = null' ---
nodeData.sourceNode.stop(0);
nodeData.sourceNode.dispose();
// parar e descartar players agendados
scheduledNodes.forEach(({ player }) => {
try { player.unsync(); } catch {}
try { player.stop(); } catch {}
try { player.dispose(); } catch {}
});
scheduledNodes.clear();
}
export function startAudioEditorPlayback() {
export async function startAudioEditorPlayback(seekTime) { // 1. Aceita 'seekTime' como parâmetro
if (isPlaying) return;
_initContext();
// garante contexto ativo do Tone (gesto do usuário já ocorreu antes)
await Tone.start();
if (audioCtx.state === 'suspended') {
audioCtx.resume();
await audioCtx.resume();
}
isPlaying = true;
// --- CORREÇÃO BUG 2: Atualiza o estado global ---
appState.global.isAudioEditorPlaying = true;
// alinhamento de relógio próprio (mantido para o seu scheduler)
startTime = audioCtx.currentTime;
// =================================================================
// 👇 INÍCIO DA CORREÇÃO (Bugs 1 & 2)
// =================================================================
updateTransportLoop();
// 1. Determine o tempo de início:
// Use o 'seekTime' recebido (da ação global) se for um número válido (>= 0).
// Caso contrário, use o tempo de seek local atual.
const timeToStart = (seekTime !== null && seekTime !== undefined && !isNaN(seekTime))
? seekTime
: (appState.audio.audioEditorSeekTime || 0); // 👈 Usa sua variável de estado
// 2. Atualize o estado global (para a agulha pular)
// Isso garante que o estado local E o Tone estejam sincronizados.
appState.audio.audioEditorSeekTime = timeToStart;
// 3. Alinhe o Tone.Transport a esse tempo
try {
Tone.Transport.seconds = timeToStart; // 👈 Usa o tempo sincronizado
} catch {}
// =================================================================
// 👆 FIM DA CORREÇÃO
// =================================================================
updateTransportLoop();
console.log("%cIniciando Playback...", "color: #3498db;");
_schedulerTick();
// inicia o Transport (para disparar os Players .sync())
try {
Tone.Transport.start();
} catch {}
// mantém seu scheduler/animador
_schedulerTick();
schedulerIntervalId = setInterval(_schedulerTick, LOOKAHEAD_INTERVAL_MS);
animationFrameId = requestAnimationFrame(_animationLoop);
updateAudioEditorUI();
const playBtn = document.getElementById("audio-editor-play-btn");
if (playBtn) {
playBtn.className = 'fa-solid fa-pause';
}
if (playBtn) playBtn.className = "fa-solid fa-pause";
}
export function stopAudioEditorPlayback(rewind = false) {
if (!isPlaying) return;
isPlaying = false;
// --- CORREÇÃO BUG 2: Atualiza o estado global ---
appState.global.isAudioEditorPlaying = false;
console.log(`%cParando Playback... (Rewind: ${rewind})`, "color: #d9534f;");
// para o Transport (para Players .sync())
try { Tone.Transport.stop(); } catch {}
clearInterval(schedulerIntervalId);
schedulerIntervalId = null;
cancelAnimationFrame(animationFrameId);
animationFrameId = null;
seekTime = logicalPlaybackTime;
logicalPlaybackTime = 0;
appState.audio.audioEditorSeekTime = appState.audio.audioEditorLogicalTime || 0;
appState.audio.audioEditorLogicalTime = 0;
if (rewind) {
seekTime = 0;
appState.audio.audioEditorSeekTime = 0;
try { Tone.Transport.seconds = 0; } catch {}
}
scheduledNodes.forEach(nodeData => {
// --- CORREÇÃO BUG 1: Remove a linha 'onended = null' ---
nodeData.sourceNode.stop(0);
nodeData.sourceNode.dispose();
// parar e descartar players agendados
scheduledNodes.forEach(({ player }) => {
try { player.unsync(); } catch {}
try { player.stop(); } catch {}
try { player.dispose(); } catch {}
});
scheduledNodes.clear();
runtimeClipState.clear();
updateAudioEditorUI();
const playBtn = document.getElementById("audio-editor-play-btn");
if (playBtn) {
playBtn.className = 'fa-solid fa-play';
}
if (playBtn) playBtn.className = 'fa-solid fa-play';
if (rewind) {
resetPlayheadVisual();
resetPlayheadVisual();
}
}
@ -284,21 +343,26 @@ export function seekAudioEditor(newTime) {
if (wasPlaying) {
stopAudioEditorPlayback(false); // Pausa
}
seekTime = newTime;
logicalPlaybackTime = newTime;
appState.audio.audioEditorSeekTime = newTime;
appState.audio.audioEditorLogicalTime = newTime;
try { Tone.Transport.seconds = newTime; } catch {}
const pixelsPerSecond = getPixelsPerSecond();
const newPositionPx = newTime * pixelsPerSecond;
updatePlayheadVisual(newPositionPx);
if (wasPlaying) {
startAudioEditorPlayback();
}
}
export function registerCallbacks(newCallbacks) {
if (newCallbacks.onClipScheduled) {
callbacks.onClipScheduled = newCallbacks.onClipScheduled;
}
if (newCallbacks.onClipPlayed) {
callbacks.onClipPlayed = newCallbacks.onClipPlayed;
}
}
if (newCallbacks.onClipScheduled) {
callbacks.onClipScheduled = newCallbacks.onClipScheduled;
}
if (newCallbacks.onClipPlayed) {
callbacks.onClipPlayed = newCallbacks.onClipPlayed;
}
}

View File

@ -0,0 +1,118 @@
// js/audio/audio_clipboard.js
import { appState } from '../state.js';
import { removeAudioClip, loadAudioForClip } from './audio_state.js';
import { renderAudioEditor } from './audio_ui.js';
import { getMainGainNode } from '../audio.js';
/**
* Copia o clipe selecionado para a área de transferência global.
*/
export function copyAudioClip() {
const clipId = appState.global.selectedClipId;
if (!clipId) return;
const clip = appState.audio.clips.find(c => c.id == clipId);
if (!clip) return;
// Remove a marca de "recortado" se houver
if (appState.global.clipboard?.cutSourceId) {
appState.global.clipboard.cutSourceId = null;
}
// Cria uma cópia limpa dos dados do clipe
const clipData = { ...clip };
// Remove referências a nós de áudio, que devem ser únicos
delete clipData.gainNode;
delete clipData.pannerNode;
delete clipData.player;
appState.global.clipboard = {
type: 'audio',
clip: clipData,
cutSourceId: null
};
console.log("Clipe copiado:", appState.global.clipboard.clip.name);
renderAudioEditor(); // Re-renderiza para remover o visual "cut"
}
/**
* Recorta o clipe selecionado para a área de transferência global.
*/
export function cutAudioClip() {
const clipId = appState.global.selectedClipId;
if (!clipId) return;
// Limpa o "cut" anterior
if (appState.global.clipboard?.cutSourceId) {
appState.global.clipboard.cutSourceId = null;
}
const clip = appState.audio.clips.find(c => c.id == clipId);
if (!clip) return;
// Cria uma cópia limpa dos dados do clipe
const clipData = { ...clip };
delete clipData.gainNode;
delete clipData.pannerNode;
delete clipData.player;
appState.global.clipboard = {
type: 'audio',
clip: clipData,
cutSourceId: clipId // Marca o ID original para exclusão
};
console.log("Clipe recortado:", appState.global.clipboard.clip.name);
renderAudioEditor(); // Re-renderiza para adicionar o visual "cut"
}
/**
* Cola o clipe da área de transferência na timeline.
* @param {number} targetTrackId - O ID da pista onde colar.
* @param {number} targetTimeInSeconds - O tempo (em segundos) onde colar.
*/
export function pasteAudioClip(targetTrackId, targetTimeInSeconds) {
const clipboard = appState.global.clipboard;
if (!clipboard || clipboard.type !== 'audio' || !clipboard.clip) {
console.warn("Área de transferência vazia ou inválida para colar áudio.");
return;
}
const clipToPaste = clipboard.clip;
// Se for um "recorte", primeiro remove o clipe original
if (clipboard.cutSourceId) {
removeAudioClip(clipboard.cutSourceId); //
clipboard.cutSourceId = null; // Limpa para que não remova de novo
}
// Cria um novo clipe a partir dos dados copiados
const newClip = {
...clipToPaste,
id: Date.now() + Math.random(), // ID novo e único
trackId: targetTrackId,
startTimeInSeconds: targetTimeInSeconds,
// Cria novos nós de áudio
gainNode: new Tone.Gain(Tone.gainToDb(clipToPaste.volume || 1.0)),
pannerNode: new Tone.Panner(clipToPaste.pan || 0),
player: null,
// O buffer será copiado/referenciado
};
newClip.gainNode.connect(newClip.pannerNode);
newClip.pannerNode.connect(getMainGainNode()); //
appState.audio.clips.push(newClip);
// Como o buffer já deve existir no clipe original,
// não precisamos de 'loadAudioForClip', mas chamamos
// para garantir (caso a fonte seja um 'sourcePath').
// A função 'loadAudioForClip' precisa ser inteligente
// para não recarregar se o buffer já existir.
loadAudioForClip(newClip).then(() => { //
renderAudioEditor();
});
}

View File

@ -1,18 +1,89 @@
// js/audio_state.js
// js/audio/audio_state.js
import { DEFAULT_VOLUME, DEFAULT_PAN } from "../config.js";
import { renderAudioEditor } from "./audio_ui.js";
import { getMainGainNode } from "../audio.js";
import { getAudioContext } from "../audio.js";
import { getMainGainNode, getAudioContext } from "../audio.js";
import * as Tone from "https://esm.sh/tone";
export let audioState = {
tracks: [],
clips: [],
// --- TEMPOS MOVIDOS DO audio_audio.js PARA O ESTADO GLOBAL ---
audioEditorSeekTime: 0,
audioEditorLogicalTime: 0,
// --- FIM DA MUDANÇA ---
audioEditorStartTime: 0,
audioEditorAnimationId: null,
audioEditorPlaybackTime: 0,
isAudioEditorLoopEnabled: false,
};
// ==== SNAPSHOT: exportação do estado atual (tracks + clips) ====
export function getAudioSnapshot() {
// Se seu estado “oficial” é audioState.* use ele;
// se for appState.audio.* troque abaixo.
const tracks = (audioState.tracks || []).map(t => ({
id: t.id, name: t.name
}));
const clips = (audioState.clips || []).map(c => ({
id: c.id,
trackId: c.trackId,
name: c.name,
sourcePath: c.sourcePath || null, // URL do asset (precisa ser acessível)
startTimeInSeconds: c.startTimeInSeconds || 0,
durationInSeconds: c.durationInSeconds || (c.buffer?.duration || 0),
offset: c.offset || 0,
pitch: c.pitch || 0,
volume: c.volume ?? 1,
pan: c.pan ?? 0,
originalDuration: c.originalDuration || (c.buffer?.duration || 0),
}));
return { tracks, clips };
}
// ==== SNAPSHOT: aplicação do estado recebido ====
export async function applyAudioSnapshot(snapshot) {
if (!snapshot) return;
// aplica trilhas (mantém ids/nome)
if (Array.isArray(snapshot.tracks) && snapshot.tracks.length) {
audioState.tracks = snapshot.tracks.map(t => ({ id: t.id, name: t.name }));
}
// insere clipes usando os MESMOS ids do emissor (idempotente)
if (Array.isArray(snapshot.clips)) {
for (const c of snapshot.clips) {
// evita duplicar se já existir (idempotência)
if (audioState.clips.some(x => String(x.id) === String(c.id))) continue;
// usa a própria função de criação (agora ela aceita id e nome)
// assinatura: addAudioClipToTimeline(samplePath, trackId, start, clipId, name)
addAudioClipToTimeline(c.sourcePath, c.trackId, c.startTimeInSeconds, c.id, c.name);
// aplica propriedades adicionais (dur/offset/pitch/vol/pan) no mesmo id
const idx = audioState.clips.findIndex(x => String(x.id) === String(c.id));
if (idx >= 0) {
const clip = audioState.clips[idx];
clip.durationInSeconds = c.durationInSeconds;
clip.offset = c.offset;
clip.pitch = c.pitch;
clip.volume = c.volume;
clip.pan = c.pan;
clip.originalDuration = c.originalDuration;
// reflete nos nós Tone já criados
if (clip.gainNode) clip.gainNode.gain.value = clip.volume ?? 1;
if (clip.pannerNode) clip.pannerNode.pan.value = clip.pan ?? 0;
}
}
}
// re-render geral do editor
renderAudioEditor();
}
export function initializeAudioState() {
audioState.clips.forEach(clip => {
if (clip.pannerNode) clip.pannerNode.dispose();
@ -21,6 +92,10 @@ export function initializeAudioState() {
Object.assign(audioState, {
tracks: [],
clips: [],
// --- ADICIONADO ---
audioEditorSeekTime: 0,
audioEditorLogicalTime: 0,
// --- FIM ---
audioEditorStartTime: 0,
audioEditorAnimationId: null,
audioEditorPlaybackTime: 0,
@ -29,6 +104,16 @@ export function initializeAudioState() {
}
export async function loadAudioForClip(clip) {
// --- ADIÇÃO ---
// Se já temos um buffer (do bounce ou colagem), não faz fetch
if (clip.buffer) {
// Garante que as durações estão corretas
if (clip.originalDuration === 0) clip.originalDuration = clip.buffer.duration;
if (clip.durationInSeconds === 0) clip.durationInSeconds = clip.buffer.duration;
return clip;
}
// --- FIM DA ADIÇÃO ---
if (!clip.sourcePath) return clip;
const audioCtx = getAudioContext();
@ -58,51 +143,82 @@ export async function loadAudioForClip(clip) {
return clip;
}
export function addAudioClipToTimeline(samplePath, trackId = 1, startTime = 0, clipName = null) {
// helper de id (fallback se o emissor não mandar)
function genClipId() {
return (crypto?.randomUUID?.() || `clip_${Date.now()}_${Math.floor(Math.random()*1e6)}`);
}
// --- FUNÇÃO MODIFICADA ---
// agora aceita clipId e clipName vindos do emissor; mantém compat com chamadas antigas
export function addAudioClipToTimeline(samplePath, trackId = 1, startTime = 0, clipIdOrName = null, nameOrBuffer = null, maybeBuffer = null) {
// compat: se passaram (filePath, trackId, start, clipId)
// mas versões antigas chamavam (filePath, trackId, start) ou (filePath, trackId, start, name, buffer)
let incomingId = null;
let clipName = null;
let existingBuffer = null;
// heurística: se clipIdOrName parece um UUID/clip_ → é id, senão é nome
if (typeof clipIdOrName === 'string' && (clipIdOrName.startsWith('clip_') || clipIdOrName.length >= 16)) {
incomingId = clipIdOrName;
clipName = (typeof nameOrBuffer === 'string') ? nameOrBuffer : null;
existingBuffer = maybeBuffer || (nameOrBuffer && typeof nameOrBuffer !== 'string' ? nameOrBuffer : null);
} else {
// assinatura antiga: 4º arg era nome
clipName = (typeof clipIdOrName === 'string') ? clipIdOrName : null;
existingBuffer = (nameOrBuffer && typeof nameOrBuffer !== 'string') ? nameOrBuffer : null;
}
const finalId = incomingId || genClipId();
// idempotência: se o id já existe, não duplica
if (audioState.clips.some(c => String(c.id) === String(finalId))) {
return;
}
const newClip = {
id: Date.now() + Math.random(),
id: finalId,
trackId: trackId,
sourcePath: samplePath,
// --- MODIFICAÇÃO AQUI ---
// Usa o nome fornecido, ou extrai do caminho se não for fornecido
name: clipName || samplePath.split('/').pop(),
sourcePath: samplePath, // Pode ser null se existingBuffer for fornecido
name: clipName || (samplePath ? String(samplePath).split('/').pop() : 'Bounced Clip'),
startTimeInSeconds: startTime,
offset: 0,
durationInSeconds: 0,
originalDuration: 0, // Será preenchido pelo loadAudioForClip
originalDuration: 0,
pitch: 0,
volume: DEFAULT_VOLUME,
pan: DEFAULT_PAN,
gainNode: new Tone.Gain(Tone.gainToDb(DEFAULT_VOLUME)),
pannerNode: new Tone.Panner(DEFAULT_PAN),
buffer: null,
buffer: existingBuffer || null,
player: null,
};
// volume linear (01)
newClip.gainNode = new Tone.Gain(DEFAULT_VOLUME);
newClip.pannerNode = new Tone.Panner(DEFAULT_PAN);
// conecta tudo no grafo do Tone (mesmo contexto)
newClip.gainNode.connect(newClip.pannerNode);
newClip.pannerNode.connect(getMainGainNode());
audioState.clips.push(newClip);
// loadAudioForClip agora vai lidar com 'existingBuffer'
loadAudioForClip(newClip).then(() => {
renderAudioEditor();
});
}
export function updateAudioClipProperties(clipId, properties) {
const clip = audioState.clips.find(c => c.id == clipId);
const clip = audioState.clips.find(c => String(c.id) == String(clipId));
if (clip) {
Object.assign(clip, properties);
}
}
export function sliceAudioClip(clipId, sliceTimeInTimeline) {
const originalClip = audioState.clips.find(c => c.id == clipId);
const originalClip = audioState.clips.find(c => String(c.id) == String(clipId));
if (!originalClip ||
sliceTimeInTimeline <= originalClip.startTimeInSeconds ||
@ -115,7 +231,7 @@ export function sliceAudioClip(clipId, sliceTimeInTimeline) {
const cutPointInClip = sliceTimeInTimeline - originalClip.startTimeInSeconds;
const newClip = {
id: Date.now() + Math.random(),
id: genClipId(),
trackId: originalClip.trackId,
sourcePath: originalClip.sourcePath,
name: originalClip.name,
@ -132,7 +248,7 @@ export function sliceAudioClip(clipId, sliceTimeInTimeline) {
volume: originalClip.volume,
pan: originalClip.pan,
gainNode: new Tone.Gain(Tone.gainToDb(originalClip.volume)),
gainNode: new Tone.Gain(originalClip.volume),
pannerNode: new Tone.Panner(originalClip.pan),
player: null
@ -148,20 +264,19 @@ export function sliceAudioClip(clipId, sliceTimeInTimeline) {
console.log("Clipe dividido. Original:", originalClip, "Novo:", newClip);
}
// ... (resto do arquivo 'audio_state.js' sem alterações) ...
export function updateClipVolume(clipId, volume) {
const clip = audioState.clips.find((c) => c.id == clipId);
const clip = audioState.clips.find((c) => String(c.id) == String(clipId));
if (clip) {
const clampedVolume = Math.max(0, Math.min(1.5, volume));
clip.volume = clampedVolume;
if (clip.gainNode) {
clip.gainNode.gain.value = Tone.gainToDb(clampedVolume);
clip.gainNode.gain.value = clampedVolume;
}
}
}
export function updateClipPan(clipId, pan) {
const clip = audioState.clips.find((c) => c.id == clipId);
const clip = audioState.clips.find((c) => String(c.id) == String(clipId));
if (clip) {
const clampedPan = Math.max(-1, Math.min(1, pan));
clip.pan = clampedPan;
@ -177,19 +292,19 @@ export function addAudioTrackLane() {
}
export function removeAudioClip(clipId) {
const clipIndex = audioState.clips.findIndex(c => c.id == clipId);
const clipIndex = audioState.clips.findIndex(c => String(c.id) == String(clipId));
if (clipIndex === -1) return false; // Retorna false se não encontrou
const clip = audioState.clips[clipIndex];
// 1. Limpa os nós de áudio do Tone.js
if (clip.gainNode) {
clip.gainNode.disconnect();
clip.gainNode.dispose();
try { clip.gainNode.disconnect(); } catch {}
try { clip.gainNode.dispose(); } catch {}
}
if (clip.pannerNode) {
clip.pannerNode.disconnect();
clip.pannerNode.dispose();
try { clip.pannerNode.disconnect(); } catch {}
try { clip.pannerNode.dispose(); } catch {}
}
// 2. Remove o clipe do array de estado
@ -197,4 +312,4 @@ export function removeAudioClip(clipId) {
// 3. Retorna true para o chamador (Controller)
return true;
}
}

File diff suppressed because it is too large Load Diff

View File

@ -8,7 +8,6 @@ export const NOTE_LENGTH = 12;
export const DEFAULT_VOLUME = 0.8;
export const DEFAULT_PAN = 0.0;
// --- ADICIONADO ---
// Constantes para o layout do editor de áudio
export const PIXELS_PER_STEP = 32; // Cada step (1/16) terá 32px de largura
export const PIXELS_PER_BAR = 512; // 16 steps * 32px/step = 512px por compasso (bar)

View File

@ -4,6 +4,10 @@ import { loadAudioForTrack } from "./pattern/pattern_state.js";
import { renderAll, getSamplePathMap } from "./ui.js";
import { DEFAULT_PAN, DEFAULT_VOLUME, NOTE_LENGTH } from "./config.js";
import { initializeAudioContext, getAudioContext, getMainGainNode } from "./audio.js";
import * as Tone from "https://esm.sh/tone";
// --- NOVA IMPORTAÇÃO ---
import { sendAction } from "./socket.js";
export async function handleFileLoad(file) {
let xmlContent = "";
@ -20,7 +24,12 @@ export async function handleFileLoad(file) {
} else {
xmlContent = await file.text();
}
await parseMmpContent(xmlContent);
// ANTES: await parseMmpContent(xmlContent);
// DEPOIS:
// Envia o XML para o servidor, que o transmitirá para todos (incluindo nós)
sendAction({ type: 'LOAD_PROJECT', xml: xmlContent });
} catch (error) {
console.error("Erro ao carregar o projeto:", error);
alert(`Erro ao carregar projeto: ${error.message}`);
@ -34,8 +43,16 @@ export async function loadProjectFromServer(fileName) {
throw new Error(`Não foi possível carregar o arquivo ${fileName}`);
const xmlContent = await response.text();
await parseMmpContent(xmlContent);
return true;
// ANTES:
// await parseMmpContent(xmlContent);
// return true;
// DEPOIS:
// Envia o XML para o servidor
sendAction({ type: 'LOAD_PROJECT', xml: xmlContent });
return true; // Retorna true para que o modal de UI feche
} catch (error) {
console.error("Erro ao carregar projeto do servidor:", error);
console.error(error);
@ -44,6 +61,10 @@ export async function loadProjectFromServer(fileName) {
}
}
// --- NENHUMA MUDANÇA DAQUI PARA BAIXO ---
// 'parseMmpContent' agora é chamado pelo 'socket.js'
// quando ele recebe a ação 'LOAD_PROJECT' ou 'load_project_state'.
export async function parseMmpContent(xmlString) {
resetProjectState();
initializeAudioContext();
@ -175,12 +196,12 @@ export async function parseMmpContent(xmlString) {
let isFirstTrackWithNotes = true;
newTracks.forEach(track => {
// --- INÍCIO DA CORREÇÃO ---
// Cria os nós de áudio usando os construtores do Tone.js
track.gainNode = new Tone.Gain(Tone.gainToDb(track.volume));
// Agora usando Volume em dB (Opção B)
track.volumeNode = new Tone.Volume(Tone.gainToDb(track.volume));
track.pannerNode = new Tone.Panner(track.pan);
// Conecta a cadeia de áudio: Gain -> Panner -> Saída Principal (Destination)
track.gainNode.connect(track.pannerNode);
// Cadeia de áudio: Volume(dB) -> Panner -> Saída Principal
track.volumeNode.connect(track.pannerNode);
track.pannerNode.connect(getMainGainNode());
// --- FIM DA CORREÇÃO ---
@ -206,7 +227,13 @@ export async function parseMmpContent(xmlString) {
appState.pattern.tracks = newTracks;
appState.pattern.activeTrackId = appState.pattern.tracks[0]?.id || null;
// força atualização total da UI e dos editores de pattern
await Promise.resolve(); // garante que os tracks estejam no estado
renderAll();
console.log('[UI] Projeto renderizado após parseMmpContent');
}
export function generateMmpFile() {
@ -314,4 +341,4 @@ function downloadFile(content, fileName) {
a.click();
document.body.removeChild(a);
URL.revokeObjectURL(url);
}
}

View File

@ -1,43 +1,65 @@
// js/main.js
// js/main.js (ESM com import absoluto de socket.js + ROOM_NAME local)
import { appState, resetProjectState } from "./state.js";
import { addTrackToState, removeLastTrackFromState } from "./pattern/pattern_state.js";
// --- CORREÇÃO AQUI ---
import { toggleRecording } from "./recording.js";
import { addAudioTrackLane, removeAudioClip } from "./audio/audio_state.js";
import { updateTransportLoop } from "./audio/audio_audio.js";
import {
togglePlayback,
stopPlayback,
rewindPlayback,
} from "./pattern/pattern_audio.js";
import {
startAudioEditorPlayback,
stopAudioEditorPlayback,
updateTransportLoop,
restartAudioEditorIfPlaying,
} from "./audio/audio_audio.js";
import { initializeAudioContext } from "./audio.js";
import { handleFileLoad, generateMmpFile } from "./file.js";
import { renderAll, loadAndRenderSampleBrowser, showOpenProjectModal, closeOpenProjectModal } from "./ui.js";
import {
renderAll,
loadAndRenderSampleBrowser,
showOpenProjectModal,
closeOpenProjectModal,
} from "./ui.js";
import { renderAudioEditor } from "./audio/audio_ui.js";
import { adjustValue, enforceNumericInput } from "./utils.js";
import { ZOOM_LEVELS } from "./config.js";
// --- NOVA FUNÇÃO ---
// Atualiza a aparência dos botões de ferramenta
// ⚠️ IMPORT ABSOLUTO para evitar 404/text/html quando a página estiver em /creation/ ou fora dela.
// Ajuste o prefixo abaixo para o caminho real onde seus assets vivem no servidor:
import { sendAction, joinRoom, setUserName } from "./socket.js";
// Descobre a sala pela URL (local ao main.js) e expõe no window para debug
const ROOM_NAME = new URLSearchParams(window.location.search).get("room");
window.ROOM_NAME = ROOM_NAME;
// ✅ NOVO: se tem sala na URL, entra já na sala (independe do áudio)
if (ROOM_NAME) {
// entra na sala para receber estado/broadcasts imediatamente
joinRoom();
}
// Função util para alternar estado dos botões de ferramenta
function updateToolButtons() {
const sliceToolBtn = document.getElementById("slice-tool-btn");
const trimToolBtn = document.getElementById("resize-tool-trim");
const stretchToolBtn = document.getElementById("resize-tool-stretch");
const sliceToolBtn = document.getElementById("slice-tool-btn");
const trimToolBtn = document.getElementById("resize-tool-trim");
const stretchToolBtn = document.getElementById("resize-tool-stretch");
if(sliceToolBtn) sliceToolBtn.classList.toggle("active", appState.global.sliceToolActive);
if(trimToolBtn) trimToolBtn.classList.toggle("active", !appState.global.sliceToolActive && appState.global.resizeMode === 'trim');
if(stretchToolBtn) stretchToolBtn.classList.toggle("active", !appState.global.sliceToolActive && appState.global.resizeMode === 'stretch');
if (sliceToolBtn)
sliceToolBtn.classList.toggle("active", appState.global.sliceToolActive);
if (trimToolBtn)
trimToolBtn.classList.toggle(
"active",
!appState.global.sliceToolActive && appState.global.resizeMode === "trim"
);
if (stretchToolBtn)
stretchToolBtn.classList.toggle(
"active",
!appState.global.sliceToolActive &&
appState.global.resizeMode === "stretch"
);
// Desativa a ferramenta de corte se outra for selecionada
document.body.classList.toggle("slice-tool-active", appState.global.sliceToolActive);
document.body.classList.toggle(
"slice-tool-active",
appState.global.sliceToolActive
);
}
document.addEventListener("DOMContentLoaded", () => {
// Botões e elementos
const newProjectBtn = document.getElementById("new-project-btn");
const openMmpBtn = document.getElementById("open-mmp-btn");
const saveMmpBtn = document.getElementById("save-mmp-btn");
@ -53,12 +75,9 @@ document.addEventListener("DOMContentLoaded", () => {
const rewindBtn = document.getElementById("rewind-btn");
const metronomeBtn = document.getElementById("metronome-btn");
const sliceToolBtn = document.getElementById("slice-tool-btn");
// --- NOVOS BOTÕES ---
const resizeToolTrimBtn = document.getElementById("resize-tool-trim");
const resizeToolStretchBtn = document.getElementById("resize-tool-stretch");
const recordBtn = document.getElementById("record-btn");
const createRoomBtn = document.getElementById("create-room-btn");
const mmpFileInput = document.getElementById("mmp-file-input");
const sampleFileInput = document.getElementById("sample-file-input");
const openProjectModal = document.getElementById("open-project-modal");
@ -68,192 +87,354 @@ document.addEventListener("DOMContentLoaded", () => {
const addBarBtn = document.getElementById("add-bar-btn");
const zoomInBtn = document.getElementById("zoom-in-btn");
const zoomOutBtn = document.getElementById("zoom-out-btn");
const deleteClipBtn = document.getElementById("delete-clip");
// --- LISTENERS ADICIONADOS (COM LÓGICA DE CONTROLLER) ---
// --- NOVO LISTENER PARA O BOTÃO DE GRAVAR ---
if (recordBtn) {
recordBtn.addEventListener("click", () => {
// Garante que o contexto de áudio foi iniciado por um gesto do usuário
initializeAudioContext();
toggleRecording();
// =================================================================
// 👇 INÍCIO DA CORREÇÃO (Botão de Sincronia - Agora envia Ação)
// =================================================================
const syncModeBtn = document.getElementById("sync-mode-btn"); //
if (syncModeBtn) {
//
// Define o estado inicial (global por padrão)
appState.global.syncMode = "global"; //
syncModeBtn.classList.add("active"); //
syncModeBtn.textContent = "Global"; //
syncModeBtn.addEventListener("click", () => {
//
// 1. Determina qual será o *novo* modo
const newMode =
appState.global.syncMode === "global" ? "local" : "global"; //
// 2. Envia a ação para sincronizar. O handleActionBroadcast
// cuidará de atualizar o appState, o botão e mostrar o toast.
sendAction({
type: "SET_SYNC_MODE",
mode: newMode,
});
}
// Listener para o botão "Excluir Clipe" no menu de contexto
const deleteClipBtn = document.getElementById('delete-clip');
if (deleteClipBtn) {
deleteClipBtn.addEventListener('click', () => {
const clipId = appState.global.selectedClipId; // 1. Lê o estado
if (clipId) {
if (removeAudioClip(clipId)) { // 2. Chama a função de state
appState.global.selectedClipId = null; // 3. Atualiza o estado global
renderAudioEditor(); // 4. Renderiza a mudança
}
}
// Esconde o menu
const menu = document.getElementById('timeline-context-menu');
if (menu) menu.style.display = 'none';
});
}
// Listener global para a tecla Delete/Backspace
document.addEventListener('keydown', (e) => {
// Ignora se estiver digitando em um input
if (e.target.tagName === 'INPUT' || e.target.tagName === 'TEXTAREA') {
return;
}
const clipId = appState.global.selectedClipId; // 1. Lê o estado
// Verifica se há um clipe selecionado e a tecla pressionada é Delete ou Backspace
if ((e.key === 'Delete' || e.key === 'Backspace') && clipId) {
e.preventDefault(); // Impede o navegador de voltar a página (ação do Backspace)
if (removeAudioClip(clipId)) { // 2. Chama a função de state
appState.global.selectedClipId = null; // 3. Atualiza o estado global
renderAudioEditor(); // 4. Renderiza a mudança
}
}
// Lógica antiga removida daqui (movida para o handler)
/*
const isNowLocal = appState.global.syncMode === "global";
appState.global.syncMode = isNowLocal ? "local" : "global";
syncModeBtn.classList.toggle("active", !isNowLocal);
syncModeBtn.textContent = isNowLocal ? "Local" : "Global";
showToast( `🎧 Modo de Playback: ${isNowLocal ? "Local" : "Global"}`, "info" );
*/
});
// Listener global para fechar menu de contexto ou desselecionar clipe
document.addEventListener('click', (e) => {
// Esconde o menu de contexto se clicar fora dele
const menu = document.getElementById('timeline-context-menu');
if (menu && !e.target.closest('#timeline-context-menu')) {
menu.style.display = 'none';
}
});
// --- FIM DOS LISTENERS ADICIONADOS ---
// Esconde o botão se não estiver em uma sala (lógica movida do socket.js)
if (!ROOM_NAME) {
//
//syncModeBtn.style.display = 'none'; // REMOVIDO PARA TESTE VISUAL
}
}
// =================================================================
// 👆 FIM DA CORREÇÃO
// =================================================================
newProjectBtn.addEventListener("click", () => {
if ((appState.pattern.tracks.length > 0 || appState.audio.clips.length > 0) && !confirm("Você tem certeza? Alterações não salvas serão perdidas.")) return;
resetProjectState();
document.getElementById('bpm-input').value = 140;
document.getElementById('bars-input').value = 1;
document.getElementById('compasso-a-input').value = 4;
document.getElementById('compasso-b-input').value = 4;
const titleElement = document.getElementById('beat-bassline-title');
if(titleElement) titleElement.textContent = 'Novo Projeto';
renderAll();
// Excluir clipe
if (deleteClipBtn) {
deleteClipBtn.addEventListener("click", () => {
initializeAudioContext();
const clipId = appState.global.selectedClipId;
if (clipId) {
sendAction({ type: "REMOVE_AUDIO_CLIP", clipId });
appState.global.selectedClipId = null;
}
const menu = document.getElementById("timeline-context-menu");
if (menu) menu.style.display = "none";
});
}
// Delete/Backspace
document.addEventListener("keydown", (e) => {
if (e.target.tagName === "INPUT" || e.target.tagName === "TEXTAREA") return;
const clipId = appState.global.selectedClipId;
if ((e.key === "Delete" || e.key === "Backspace") && clipId) {
e.preventDefault();
sendAction({ type: "REMOVE_AUDIO_CLIP", clipId });
appState.global.selectedClipId = null;
}
});
addBarBtn.addEventListener("click", () => {
// Fechar menu contexto
document.addEventListener("click", (e) => {
const menu = document.getElementById("timeline-context-menu");
if (menu && !e.target.closest("#timeline-context-menu")) {
menu.style.display = "none";
}
});
// Ações principais (broadcast)
newProjectBtn?.addEventListener("click", () => {
initializeAudioContext();
if (
(appState.pattern.tracks.length > 0 || appState.audio.clips.length > 0) &&
!confirm(
"Você tem certeza? Isso irá resetar o projeto para TODOS na sala."
)
)
return;
sendAction({ type: "RESET_PROJECT" });
});
addBarBtn?.addEventListener("click", () => {
const barsInput = document.getElementById("bars-input");
if (barsInput) adjustValue(barsInput, 1);
});
openMmpBtn.addEventListener("click", showOpenProjectModal);
loadFromComputerBtn.addEventListener("click", () => mmpFileInput.click());
mmpFileInput.addEventListener("change", (event) => { const file = event.target.files[0]; if (file) { handleFileLoad(file).then(() => closeOpenProjectModal()); } });
uploadSampleBtn.addEventListener("click", () => sampleFileInput.click());
saveMmpBtn.addEventListener("click", generateMmpFile);
addInstrumentBtn.addEventListener("click", addTrackToState);
removeInstrumentBtn.addEventListener("click", removeLastTrackFromState);
playBtn.addEventListener("click", togglePlayback);
stopBtn.addEventListener("click", stopPlayback);
rewindBtn.addEventListener("click", rewindPlayback);
metronomeBtn.addEventListener("click", () => { initializeAudioContext(); appState.global.metronomeEnabled = !appState.global.metronomeEnabled; metronomeBtn.classList.toggle("active", appState.global.metronomeEnabled); });
// --- LISTENERS DE FERRAMENTAS ATUALIZADOS ---
if(sliceToolBtn) {
sliceToolBtn.addEventListener("click", () => {
appState.global.sliceToolActive = !appState.global.sliceToolActive;
updateToolButtons();
});
}
if(resizeToolTrimBtn) {
resizeToolTrimBtn.addEventListener("click", () => {
appState.global.resizeMode = 'trim';
appState.global.sliceToolActive = false;
updateToolButtons();
});
}
if(resizeToolStretchBtn) {
resizeToolStretchBtn.addEventListener("click", () => {
appState.global.resizeMode = 'stretch';
appState.global.sliceToolActive = false;
updateToolButtons();
});
}
openModalCloseBtn.addEventListener("click", closeOpenProjectModal);
sidebarToggle.addEventListener("click", () => {
document.body.classList.toggle("sidebar-hidden");
const icon = sidebarToggle.querySelector("i");
if (icon) {
icon.className = document.body.classList.contains("sidebar-hidden") ? "fa-solid fa-caret-right" : "fa-solid fa-caret-left";
if (barsInput) {
adjustValue(barsInput, 1);
barsInput.dispatchEvent(new Event("change", { bubbles: true }));
}
});
openMmpBtn?.addEventListener("click", showOpenProjectModal);
loadFromComputerBtn?.addEventListener("click", () => mmpFileInput?.click());
mmpFileInput?.addEventListener("change", (event) => {
const file = event.target.files[0];
if (file) handleFileLoad(file).then(() => closeOpenProjectModal());
});
uploadSampleBtn?.addEventListener("click", () => sampleFileInput?.click());
saveMmpBtn?.addEventListener("click", generateMmpFile);
addInstrumentBtn?.addEventListener("click", () => {
initializeAudioContext();
sendAction({ type: "ADD_TRACK" });
});
removeInstrumentBtn?.addEventListener("click", () => {
initializeAudioContext();
sendAction({ type: "REMOVE_LAST_TRACK" });
});
playBtn?.addEventListener("click", () => {
initializeAudioContext();
sendAction({ type: "TOGGLE_PLAYBACK" });
});
stopBtn?.addEventListener("click", () => {
initializeAudioContext();
sendAction({ type: "STOP_PLAYBACK" });
});
rewindBtn?.addEventListener("click", () => {
initializeAudioContext();
sendAction({ type: "REWIND_PLAYBACK" });
});
metronomeBtn?.addEventListener("click", () => {
initializeAudioContext();
appState.global.metronomeEnabled = !appState.global.metronomeEnabled;
metronomeBtn.classList.toggle("active", appState.global.metronomeEnabled);
});
// Ferramentas locais
if (sliceToolBtn) {
sliceToolBtn.addEventListener("click", () => {
appState.global.sliceToolActive = !appState.global.sliceToolActive;
updateToolButtons();
});
}
if (resizeToolTrimBtn) {
resizeToolTrimBtn.addEventListener("click", () => {
appState.global.resizeMode = "trim";
appState.global.sliceToolActive = false;
updateToolButtons();
});
}
if (resizeToolStretchBtn) {
resizeToolStretchBtn.addEventListener("click", () => {
appState.global.resizeMode = "stretch";
appState.global.sliceToolActive = false;
updateToolButtons();
});
}
openModalCloseBtn?.addEventListener("click", closeOpenProjectModal);
sidebarToggle?.addEventListener("click", () => {
document.body.classList.toggle("sidebar-hidden");
const icon = sidebarToggle.querySelector("i");
if (icon) {
icon.className = document.body.classList.contains("sidebar-hidden")
? "fa-solid fa-caret-right"
: "fa-solid fa-caret-left";
}
});
const inputs = document.querySelectorAll(".value-input");
inputs.forEach((input) => {
input.addEventListener("input", (event) => {
enforceNumericInput(event);
if (appState.global.isPlaying && (event.target.id.startsWith("compasso-") || event.target.id === 'bars-input')) { stopPlayback(); }
if (event.target.id.startsWith("compasso-") || event.target.id === 'bars-input' || event.target.id === 'bpm-input') { renderAll(); }
if (
appState.global.isPlaying &&
(event.target.id.startsWith("compasso-") ||
event.target.id === "bars-input")
) {
sendAction({ type: "STOP_PLAYBACK" });
}
});
input.addEventListener("change", (event) => {
const target = event.target;
if (target.id === "bpm-input") {
sendAction({ type: "SET_BPM", value: target.value });
} else if (target.id === "bars-input") {
sendAction({ type: "SET_BARS", value: target.value });
} else if (target.id === "compasso-a-input") {
sendAction({ type: "SET_TIMESIG_A", value: target.value });
} else if (target.id === "compasso-b-input") {
sendAction({ type: "SET_TIMESIG_B", value: target.value });
}
});
input.addEventListener("wheel", (event) => {
event.preventDefault();
const step = event.deltaY < 0 ? 1 : -1;
adjustValue(event.target, step);
event.target.dispatchEvent(new Event("change", { bubbles: true }));
});
input.addEventListener("wheel", (event) => { event.preventDefault(); const step = event.deltaY < 0 ? 1 : -1; adjustValue(event.target, step); });
});
const buttons = document.querySelectorAll(".adjust-btn");
buttons.forEach((button) => { button.addEventListener("click", () => { const targetId = button.dataset.target + "-input"; const targetInput = document.getElementById(targetId); const step = parseInt(button.dataset.step, 10) || 1; if (targetInput) { adjustValue(targetInput, step); } }); });
if (zoomInBtn) {
zoomInBtn.addEventListener("click", () => {
if (appState.global.zoomLevelIndex < ZOOM_LEVELS.length - 1) {
appState.global.zoomLevelIndex++;
renderAll();
}
buttons.forEach((button) => {
button.addEventListener("click", () => {
const targetId = button.dataset.target + "-input";
const targetInput = document.getElementById(targetId);
const step = parseInt(button.dataset.step, 10) || 1;
if (targetInput) {
adjustValue(targetInput, step);
targetInput.dispatchEvent(new Event("change", { bubbles: true }));
}
});
}
if (zoomOutBtn) {
zoomOutBtn.addEventListener("click", () => {
if (appState.global.zoomLevelIndex > 0) {
appState.global.zoomLevelIndex--;
renderAll();
}
});
}
audioEditorPlayBtn.addEventListener("click", () => {
if (appState.global.isAudioEditorPlaying) {
stopAudioEditorPlayback(false); // Pausa
} else {
startAudioEditorPlayback();
}
});
audioEditorStopBtn.addEventListener("click", () => stopAudioEditorPlayback(true)); // Stop (rebobina)
audioEditorLoopBtn.addEventListener("click", () => {
appState.global.isLoopActive = !appState.global.isLoopActive;
appState.audio.isAudioEditorLoopEnabled = appState.global.isLoopActive;
audioEditorLoopBtn.classList.toggle("active", appState.global.isLoopActive);
updateTransportLoop();
const loopArea = document.getElementById("loop-region");
if (loopArea) {
loopArea.classList.toggle("visible", appState.global.isLoopActive);
// Zoom local
zoomInBtn?.addEventListener("click", () => {
if (appState.global.zoomLevelIndex < ZOOM_LEVELS.length - 1) {
appState.global.zoomLevelIndex++;
renderAll();
}
});
zoomOutBtn?.addEventListener("click", () => {
if (appState.global.zoomLevelIndex > 0) {
appState.global.zoomLevelIndex--;
renderAll();
}
restartAudioEditorIfPlaying();
});
if (addAudioTrackBtn) { addAudioTrackBtn.addEventListener("click", () => { addAudioTrackLane(); renderAudioEditor(); }); }
// Editor de Áudio
audioEditorPlayBtn?.addEventListener("click", () => {
initializeAudioContext();
if (appState.global.isAudioEditorPlaying) {
sendAction({ type: "STOP_AUDIO_PLAYBACK", rewind: false });
} else {
sendAction({
type: "START_AUDIO_PLAYBACK",
seekTime: appState.audio.audioEditorSeekTime, // Corrigido
loopState: {
isLoopActive: appState.global.isLoopActive,
loopStartTime: appState.global.loopStartTime,
loopEndTime: appState.global.loopEndTime,
},
});
}
});
audioEditorStopBtn?.addEventListener("click", () => {
initializeAudioContext();
sendAction({ type: "STOP_AUDIO_PLAYBACK", rewind: true });
});
// Loop Button (agora envia ação)
audioEditorLoopBtn?.addEventListener("click", () => {
initializeAudioContext(); // Garante contexto
const newLoopState = !appState.global.isLoopActive;
sendAction({
type: "SET_LOOP_STATE",
isLoopActive: newLoopState,
loopStartTime: appState.global.loopStartTime,
loopEndTime: appState.global.loopEndTime,
});
});
if (addAudioTrackBtn) {
addAudioTrackBtn.addEventListener("click", () => {
initializeAudioContext();
sendAction({ type: "ADD_AUDIO_LANE" });
});
}
// Navegador de Samples (local)
loadAndRenderSampleBrowser();
const browserContent = document.getElementById('browser-content');
const browserContent = document.getElementById("browser-content");
if (browserContent) {
browserContent.addEventListener('click', function(event) {
const folderName = event.target.closest('.folder-name');
if (folderName) {
const folderItem = folderName.parentElement;
folderItem.classList.toggle('open');
}
});
browserContent.addEventListener("click", function (event) {
const folderName = event.target.closest(".folder-name");
if (folderName) {
const folderItem = folderName.parentElement;
folderItem.classList.toggle("open");
}
});
}
// Criar sala (gera link com ?room=...)
if (createRoomBtn) {
createRoomBtn.addEventListener("click", () => {
initializeAudioContext();
const currentParams = new URLSearchParams(window.location.search);
if (currentParams.has("room")) {
alert(
`Você já está na sala: ${currentParams.get(
"room"
)}\n\nCopie o link da barra de endereços para convidar.`
);
return;
}
const defaultName = `sessao-${Math.random()
.toString(36)
.substring(2, 7)}`;
const roomName = prompt(
"Digite um nome para a sala compartilhada:",
defaultName
);
if (!roomName) return;
const currentUrl = window.location.origin + window.location.pathname;
const shareableLink = `${currentUrl}?room=${encodeURIComponent(
roomName
)}`;
try {
navigator.clipboard.writeText(shareableLink);
alert(
`Link da sala copiado para a área de transferência!\n\n${shareableLink}\n\nA página será recarregada agora para entrar na nova sala.`
);
} catch (err) {
alert(
`Link da sala: ${shareableLink}\n\nA página será recarregada agora para entrar na nova sala.`
);
}
window.location.href = shareableLink;
});
}
// Modal “destravar áudio” + entrar na sala
const audioUnlockModal = document.getElementById("audio-unlock-modal");
const audioUnlockBtn = document.getElementById("audio-unlock-btn");
if (ROOM_NAME && audioUnlockModal && audioUnlockBtn) {
audioUnlockModal.style.display = "flex";
audioUnlockBtn.addEventListener("click", () => {
const userName = prompt(
"Qual o seu nome?",
`Alicer-${Math.floor(Math.random() * 999)}`
);
if (!userName) return;
setUserName(userName);
initializeAudioContext();
// joinRoom() já foi chamado no início se ROOM_NAME existe
audioUnlockModal.style.display = "none";
});
} else {
console.log("Modo local. Áudio será iniciado no primeiro clique.");
// Comentado para permitir teste visual
// if (syncModeBtn) syncModeBtn.style.display = "none";
}
renderAll();
updateToolButtons(); // Define o estado inicial dos botões
});
updateToolButtons();
});

View File

@ -1,4 +1,6 @@
// js/pattern_audio.js
import * as Tone from "https://esm.sh/tone";
import { appState } from "../state.js";
import { highlightStep } from "./pattern_ui.js";
import { getTotalSteps } from "../utils.js";
@ -21,24 +23,39 @@ export function playMetronomeSound(isDownbeat) {
synth.triggerAttackRelease(freq, "8n", Tone.now());
}
// --- FUNÇÃO CORRIGIDA E EFICIENTE ---
// Dispara o sample de uma track, garantindo que o player esteja roteado corretamente
export function playSample(filePath, trackId) {
initializeAudioContext();
const track = trackId ? appState.pattern.tracks.find((t) => t.id == trackId) : null;
// Se a faixa existe e tem um player pré-carregado, apenas o dispara.
// Se a faixa existe e tem um player pré-carregado
if (track && track.player) {
// Atualiza o volume/pan caso tenham sido alterados
track.gainNode.gain.value = Tone.gainToDb(track.volume);
track.pannerNode.pan.value = track.pan;
// Dispara o som imediatamente. Esta operação é instantânea.
track.player.start(Tone.now());
}
// Fallback para preview de samples no navegador (sem trackId)
if (track.player.loaded) {
// Ajusta volume/pan sempre que tocar (robustez a alterações em tempo real)
if (track.volumeNode) {
track.volumeNode.volume.value =
track.volume === 0 ? -Infinity : Tone.gainToDb(track.volume);
}
if (track.pannerNode) {
track.pannerNode.pan.value = track.pan ?? 0;
}
// Garante conexão: player -> volumeNode (não usar mais gainNode)
try { track.player.disconnect(); } catch {}
if (track.volumeNode) {
track.player.connect(track.volumeNode);
}
// Dispara imediatamente
track.player.start(Tone.now());
} else {
console.warn(`Player da trilha "${track.name}" ainda não carregado — pulando este tick.`);
}
}
// Fallback para preview de sample sem trackId
else if (!trackId && filePath) {
const previewPlayer = new Tone.Player(filePath).toDestination();
previewPlayer.autostart = true;
const previewPlayer = new Tone.Player(filePath).toDestination();
previewPlayer.autostart = true;
}
}
@ -59,6 +76,7 @@ function tick() {
timerDisplay.textContent = formatTime(currentTime);
}
// Metrônomo
if (appState.global.metronomeEnabled) {
const noteValue = parseInt(document.getElementById("compasso-b-input").value, 10) || 4;
const stepsPerBeat = 16 / noteValue;
@ -67,12 +85,16 @@ function tick() {
}
}
// Percorre tracks e toca o step atual se ativo
appState.pattern.tracks.forEach((track) => {
if (!track.patterns || track.patterns.length === 0) return;
const activePattern = track.patterns[appState.pattern.activePatternIndex];
if (activePattern && activePattern.steps[appState.global.currentStep] && track.samplePath) {
// IMPORTANTE: usar o pattern ativo da PRÓPRIA TRILHA
const activePattern = track.patterns[track.activePatternIndex];
if (activePattern &&
activePattern.steps[appState.global.currentStep] &&
track.samplePath) {
playSample(track.samplePath, track.id);
}
});
@ -84,9 +106,9 @@ function tick() {
export function startPlayback() {
if (appState.global.isPlaying || appState.pattern.tracks.length === 0) return;
initializeAudioContext();
if (appState.global.currentStep === 0) {
rewindPlayback();
rewindPlayback();
}
const bpm = parseInt(document.getElementById("bpm-input").value, 10) || 120;
@ -96,15 +118,18 @@ export function startPlayback() {
if (appState.global.playbackIntervalId) clearInterval(appState.global.playbackIntervalId);
appState.global.isPlaying = true;
document.getElementById("play-btn").classList.remove("fa-play");
document.getElementById("play-btn").classList.add("fa-pause");
const playBtn = document.getElementById("play-btn");
if (playBtn) {
playBtn.classList.remove("fa-play");
playBtn.classList.add("fa-pause");
}
tick();
appState.global.playbackIntervalId = setInterval(tick, stepInterval);
}
export function stopPlayback() {
if(appState.global.playbackIntervalId) {
if (appState.global.playbackIntervalId) {
clearInterval(appState.global.playbackIntervalId);
}
appState.global.playbackIntervalId = null;
@ -138,4 +163,4 @@ export function togglePlayback() {
appState.global.currentStep = 0;
startPlayback();
}
}
}

View File

@ -0,0 +1,108 @@
// js/pattern/pattern_bounce.js
import { appState } from '../state.js';
import { getSecondsPerStep } from '../utils.js';
import { addAudioClipToTimeline, addAudioTrackLane } from '../audio/audio_state.js';
import { getAudioContext } from '../audio.js';
import { renderAudioEditor } from '../audio/audio_ui.js';
/**
* Renderiza (bounce) o pattern de beat atualmente ativo para uma nova pista de áudio.
*/
export async function bounceActivePatternToAudio() {
console.log("Iniciando 'bounce' do pattern...");
// 1. Encontrar o pattern ativo
const activeTrackId = appState.pattern.activeTrackId;
// --- DEBUG ---
console.log(`[DEBUG bounce] activeTrackId lido do estado: ${activeTrackId}`);
const activeTrack = appState.pattern.tracks.find(t => t.id === activeTrackId);
// --- DEBUG ---
if (activeTrack) {
console.log(`[DEBUG bounce] Pista ativa encontrada:`, activeTrack.name);
console.log(`[DEBUG bounce] Verificando track.buffer:`, activeTrack.buffer);
} else {
console.error(`[DEBUG bounce] NENHUMA PISTA ATIVA ENCONTRADA. activeTrackId é nulo ou inválido.`);
console.log(`[DEBUG bounce] Pistas disponíveis no estado:`, appState.pattern.tracks.map(t => ({id: t.id, name: t.name})));
}
// --- FIM DEBUG ---
if (!activeTrack) {
alert('Nenhuma pista de pattern selecionada para renderizar.');
return;
}
const activePattern = activeTrack.patterns[activeTrack.activePatternIndex];
if (!activePattern) {
alert('Nenhum pattern ativo encontrado na pista.');
return;
}
const trackBuffer = activeTrack.buffer;
if (!trackBuffer) {
alert('O áudio (sample) desta pista ainda não foi carregado.');
return;
}
// 2. Calcular a duração do pattern
const steps = activePattern.steps;
const totalSteps = steps.length;
const secondsPerStep = getSecondsPerStep(); //
const duration = totalSteps * secondsPerStep;
if (duration <= 0) {
alert("Pattern está vazio ou com duração zero.");
return;
}
try {
// 3. Usar Tone.Offline para renderizar o áudio
const audioBuffer = await Tone.Offline(async (offlineCtx) => {
const gainNode = new Tone.Gain(Tone.gainToDb(activeTrack.volume)).connect(offlineCtx.destination);
const pannerNode = new Tone.Panner(activeTrack.pan).connect(gainNode); //
const now = offlineCtx.currentTime;
// --- INÍCIO DA CORREÇÃO (que estava na versão anterior) ---
const offlineBuffer = offlineCtx.createBuffer(
trackBuffer.numberOfChannels,
trackBuffer.length,
trackBuffer.sampleRate
);
for (let i = 0; i < trackBuffer.numberOfChannels; i++) {
offlineBuffer.copyToChannel(trackBuffer.getChannelData(i), i);
}
// --- FIM DA CORREÇÃO ---
// Agendar todas as notas (steps)
steps.forEach((isActive, index) => {
if (isActive) {
const time = now + (index * secondsPerStep);
const source = new Tone.BufferSource(offlineBuffer).connect(pannerNode);
source.start(time);
}
});
}, duration);
// 4. Áudio renderizado. Agora, adicione-o ao editor de áudio.
addAudioTrackLane(); //
const newTrack = appState.audio.tracks[appState.audio.tracks.length - 1]; //
const newTrackId = newTrack.id;
const clipName = `${activeTrack.name}_(${activePattern.name})`;
addAudioClipToTimeline(null, newTrackId, 0, clipName, audioBuffer); //
console.log("Pattern renderizado com sucesso!");
} catch (err) {
console.error("Erro ao renderizar o pattern:", err);
alert(`Erro ao renderizar pattern: ${err.message}`);
}
}

View File

@ -1,97 +1,148 @@
// js/pattern_state.js
import * as Tone from "https://esm.sh/tone";
import { appState } from "../state.js";
import { DEFAULT_VOLUME, DEFAULT_PAN } from "../config.js";
import { getAudioContext, getMainGainNode } from "../audio.js";
import { renderPatternEditor } from "./pattern_ui.js";
import { getMainGainNode } from "../audio.js";
import { getTotalSteps } from "../utils.js";
const initialState = {
tracks: [],
activeTrackId: null,
activePatternIndex: 0,
};
export let patternState = { ...initialState };
export function initializePatternState() {
Object.assign(patternState, initialState, { tracks: [] });
// Limpa players/buffers existentes
appState.pattern.tracks.forEach(track => {
try { track.player?.dispose(); } catch {}
try { track.buffer?.dispose?.(); } catch {}
});
// Reseta estado do editor de pattern
appState.pattern.tracks = [];
appState.pattern.activeTrackId = null;
appState.pattern.activePatternIndex = 0;
}
// --- FUNÇÃO CORRIGIDA ---
// Agora, esta função cria e pré-carrega um Tone.Player para a faixa.
export async function loadAudioForTrack(track) {
if (!track.samplePath) return track;
try {
// Se já existir um player antigo, o descartamos para liberar memória.
if (track.player) {
track.player.dispose();
}
// Cria um novo Tone.Player e o conecta à cadeia de áudio da faixa.
// O 'await' garante que o áudio seja totalmente carregado antes de prosseguirmos.
track.player = await new Tone.Player(track.samplePath).toDestination();
track.player.chain(track.gainNode, track.pannerNode, getMainGainNode());
} catch (error) {
console.error(`Falha ao carregar áudio para a trilha ${track.name}:`, error);
// Descartar player/buffer anteriores com segurança
try { track.player?.dispose(); } catch {}
track.player = null;
try { track.buffer?.dispose?.(); } catch {}
track.buffer = null;
// Garante nós de volume/pan (Opção B: Volume em dB)
if (!track.volumeNode) {
track.volumeNode = new Tone.Volume(
track.volume === 0 ? -Infinity : Tone.gainToDb(track.volume)
);
} else {
track.volumeNode.volume.value =
track.volume === 0 ? -Infinity : Tone.gainToDb(track.volume);
}
if (!track.pannerNode) {
track.pannerNode = new Tone.Panner(track.pan ?? 0);
} else {
track.pannerNode.pan.value = track.pan ?? 0;
}
// Encadeia: Volume(dB) -> Panner -> Master
try { track.volumeNode.disconnect(); } catch {}
try { track.pannerNode.disconnect(); } catch {}
track.volumeNode.connect(track.pannerNode);
track.pannerNode.connect(getMainGainNode());
// Cria e carrega o Player
const player = new Tone.Player({ url: track.samplePath, autostart: false });
await player.load(track.samplePath); // garante buffer carregado
// Conecta o player ao volumeNode
player.connect(track.volumeNode);
// Buffer separado (se você usar waveform em outro lugar)
const buffer = new Tone.Buffer();
await buffer.load(track.samplePath);
// Atribuições finais
track.player = player;
track.buffer = buffer;
} catch (error) {
console.error('Erro ao carregar sample:', track.samplePath);
console.error(`Falha ao carregar áudio para a trilha "${track.name}":`, error);
try { track.player?.dispose(); } catch {}
try { track.buffer?.dispose?.(); } catch {}
track.player = null;
track.buffer = null;
}
return track;
}
export function addTrackToState() {
const mainGainNode = getMainGainNode();
const totalSteps = getTotalSteps();
const referenceTrack = patternState.tracks[0];
const referenceTrack = appState.pattern.tracks[0];
const newTrack = {
id: Date.now(),
id: Date.now() + Math.random(),
name: "novo instrumento",
samplePath: null,
player: null, // <-- ADICIONADO: O player começará como nulo
patterns: referenceTrack
? referenceTrack.patterns.map(p => ({ name: p.name, steps: new Array(p.steps.length).fill(false), pos: p.pos }))
player: null,
buffer: null,
patterns: referenceTrack
? referenceTrack.patterns.map(p => ({
name: p.name,
steps: new Array(p.steps.length).fill(false),
pos: p.pos
}))
: [{ name: "Pattern 1", steps: new Array(totalSteps).fill(false), pos: 0 }],
activePatternIndex: 0,
volume: DEFAULT_VOLUME,
pan: DEFAULT_PAN,
gainNode: new Tone.Gain(Tone.gainToDb(DEFAULT_VOLUME)),
// Opção B: controlar volume em dB
volumeNode: new Tone.Volume(Tone.gainToDb(DEFAULT_VOLUME)),
pannerNode: new Tone.Panner(DEFAULT_PAN),
};
newTrack.gainNode.chain(newTrack.pannerNode, mainGainNode);
// Cadeia de áudio nova
newTrack.volumeNode.connect(newTrack.pannerNode);
newTrack.pannerNode.connect(getMainGainNode());
patternState.tracks.push(newTrack);
renderPatternEditor();
appState.pattern.tracks.push(newTrack);
appState.pattern.activeTrackId = newTrack.id;
}
export function removeLastTrackFromState() {
if (patternState.tracks.length > 0) {
const trackToRemove = patternState.tracks[patternState.tracks.length - 1];
if (trackToRemove.player) trackToRemove.player.dispose();
if (trackToRemove.pannerNode) trackToRemove.pannerNode.dispose();
if (trackToRemove.gainNode) trackToRemove.gainNode.dispose();
patternState.tracks.pop();
renderPatternEditor();
if (appState.pattern.tracks.length > 0) {
const trackToRemove = appState.pattern.tracks[appState.pattern.tracks.length - 1];
try { trackToRemove.player?.dispose(); } catch {}
try { trackToRemove.buffer?.dispose?.(); } catch {}
try { trackToRemove.pannerNode?.disconnect(); } catch {}
try { trackToRemove.volumeNode?.disconnect(); } catch {}
appState.pattern.tracks.pop();
if (appState.pattern.activeTrackId === trackToRemove.id) {
appState.pattern.activeTrackId = appState.pattern.tracks[0]?.id ?? null;
}
}
}
export async function updateTrackSample(trackId, samplePath) {
const track = patternState.tracks.find((t) => t.id == trackId);
export async function updateTrackSample(trackIndex, samplePath) {
const track = appState.pattern.tracks[trackIndex];
if (track) {
track.samplePath = samplePath;
track.name = samplePath.split("/").pop();
await loadAudioForTrack(track); // Carrega o novo player
renderPatternEditor();
// (re)carrega e reconecta corretamente o player nesta trilha
await loadAudioForTrack(track);
}
}
export function toggleStepState(trackId, stepIndex) {
const track = patternState.tracks.find((t) => t.id == trackId);
export function toggleStepState(trackIndex, stepIndex) {
const track = appState.pattern.tracks[trackIndex];
if (track && track.patterns && track.patterns.length > 0) {
const activePattern = track.patterns[track.activePatternIndex];
if (activePattern && activePattern.steps.length > stepIndex) {
activePattern.steps[stepIndex] = !activePattern.steps[stepIndex];
}
}
}
}

View File

@ -1,171 +1,218 @@
// js/pattern_ui.js
import { appState } from "../state.js";
import {
toggleStepState,
updateTrackSample
    updateTrackSample
} from "./pattern_state.js";
import { playSample, stopPlayback } from "./pattern_audio.js"; // Será criado no próximo passo
import { playSample, stopPlayback } from "./pattern_audio.js";
import { getTotalSteps } from "../utils.js";
import { sendAction } from '../socket.js';
import { initializeAudioContext } from '../audio.js';
// Função principal de renderização para o editor de patterns
export function renderPatternEditor() {
const trackContainer = document.getElementById("track-container");
trackContainer.innerHTML = "";
  const trackContainer = document.getElementById("track-container");
  trackContainer.innerHTML = "";
appState.pattern.tracks.forEach((trackData) => {
const trackLane = document.createElement("div");
trackLane.className = "track-lane";
trackLane.dataset.trackId = trackData.id;
// (V7) Adicionado 'trackIndex'
  appState.pattern.tracks.forEach((trackData, trackIndex) => {
    const trackLane = document.createElement("div");
    trackLane.className = "track-lane";
    trackLane.dataset.trackIndex = trackIndex; // (V7) Usando índice
if (trackData.id === appState.pattern.activeTrackId) {
trackLane.classList.add('active-track');
}
    if (trackData.id === appState.pattern.activeTrackId) {
        trackLane.classList.add('active-track');
    }
trackLane.innerHTML = `
<div class="track-info">
<i class="fa-solid fa-gear"></i>
<div class="track-mute"></div>
<span class="track-name">${trackData.name}</span>
</div>
<div class="track-controls">
<div class="knob-container">
<div class="knob" data-control="volume" data-track-id="${trackData.id}"><div class="knob-indicator"></div></div>
<span>VOL</span>
</div>
<div class="knob-container">
<div class="knob" data-control="pan" data-track-id="${trackData.id}"><div class="knob-indicator"></div></div>
<span>PAN</span>
</div>
</div>
<div class="step-sequencer-wrapper"></div>
`;
    trackLane.innerHTML = `
      <div class="track-info">
        <i class="fa-solid fa-gear"></i>
        <div class="track-mute"></div>
        <span class="track-name">${trackData.name}</span>
      </div>
      <div class="track-controls">
        <div class="knob-container">
          <div class="knob" data-control="volume" data-track-id="${trackData.id}"><div class="knob-indicator"></div></div>
          <span>VOL</span>
        </div>
        <div class="knob-container">
          <div class="knob" data-control="pan" data-track-id="${trackData.id}"><div class="knob-indicator"></div></div>
          <span>PAN</span>
        </div>
      </div>
      <div class="step-sequencer-wrapper"></div>
    `;
trackLane.addEventListener('click', () => {
if (appState.pattern.activeTrackId === trackData.id) return;
stopPlayback();
appState.pattern.activeTrackId = trackData.id;
document.querySelectorAll('.track-lane').forEach(lane => lane.classList.remove('active-track'));
trackLane.classList.add('active-track');
updateGlobalPatternSelector();
redrawSequencer();
});
// (Listener de clique da track é local, sem mudanças)
    trackLane.addEventListener('click', () => {
        if (appState.pattern.activeTrackId === trackData.id) return;
        stopPlayback();
        appState.pattern.activeTrackId = trackData.id;
        document.querySelectorAll('.track-lane').forEach(lane => lane.classList.remove('active-track'));
        trackLane.classList.add('active-track');
        updateGlobalPatternSelector();
        redrawSequencer();
    });
trackLane.addEventListener("dragover", (e) => { e.preventDefault(); trackLane.classList.add("drag-over"); });
trackLane.addEventListener("dragleave", () => trackLane.classList.remove("drag-over"));
trackLane.addEventListener("drop", (e) => {
e.preventDefault();
trackLane.classList.remove("drag-over");
const filePath = e.dataTransfer.getData("text/plain");
if (filePath) {
updateTrackSample(trackData.id, filePath);
}
});
    trackLane.addEventListener("dragover", (e) => { e.preventDefault(); trackLane.classList.add("drag-over"); });
    trackLane.addEventListener("dragleave", () => trackLane.classList.remove("drag-over"));
trackContainer.appendChild(trackLane);
// A lógica dos knobs precisará ser reimplementada ou movida para um arquivo de componentes
});
updateGlobalPatternSelector();
redrawSequencer();
// (V9) Listener de "drop" (arrastar) agora usa 'sendAction'
    trackLane.addEventListener("drop", (e) => {
      e.preventDefault();
      trackLane.classList.remove("drag-over");
      const filePath = e.dataTransfer.getData("text/plain");
     
      if (filePath) {
sendAction({
type: 'SET_TRACK_SAMPLE',
trackIndex: trackIndex,
filePath: filePath
});
      }
    });
    trackContainer.appendChild(trackLane);
  });
 
  updateGlobalPatternSelector();
  redrawSequencer();
}
export function redrawSequencer() {
const totalGridSteps = getTotalSteps();
document.querySelectorAll(".step-sequencer-wrapper").forEach((wrapper) => {
let sequencerContainer = wrapper.querySelector(".step-sequencer");
if (!sequencerContainer) {
sequencerContainer = document.createElement("div");
sequencerContainer.className = "step-sequencer";
wrapper.appendChild(sequencerContainer);
}
const parentTrackElement = wrapper.closest(".track-lane");
const trackId = parentTrackElement.dataset.trackId;
const trackData = appState.pattern.tracks.find((t) => t.id == trackId);
  const totalGridSteps = getTotalSteps();
  document.querySelectorAll(".step-sequencer-wrapper").forEach((wrapper) => {
    let sequencerContainer = wrapper.querySelector(".step-sequencer");
    if (!sequencerContainer) {
      sequencerContainer = document.createElement("div");
      sequencerContainer.className = "step-sequencer";
      wrapper.appendChild(sequencerContainer);
    }
   
    const parentTrackElement = wrapper.closest(".track-lane");
    const trackIndex = parseInt(parentTrackElement.dataset.trackIndex, 10); // (V7)
    // ... dentro da função redrawSequencer() ...
if (!trackData || !trackData.patterns || trackData.patterns.length === 0) {
sequencerContainer.innerHTML = ""; return;
}
    const trackData = appState.pattern.tracks[trackIndex];
const activePattern = trackData.patterns[appState.pattern.activePatternIndex];
if (!activePattern) {
sequencerContainer.innerHTML = ""; return;
}
const patternSteps = activePattern.steps;
    if (!trackData || !trackData.patterns || trackData.patterns.length === 0) {
      sequencerContainer.innerHTML = ""; return;
    }
sequencerContainer.innerHTML = "";
for (let i = 0; i < totalGridSteps; i++) {
const stepWrapper = document.createElement("div");
stepWrapper.className = "step-wrapper";
const stepElement = document.createElement("div");
stepElement.className = "step";
if (patternSteps[i] === true) {
stepElement.classList.add("active");
}
// --- CORRIJA ESTAS DUAS LINHAS ---
// ANTES:
// const activePatternIndex = appState.pattern.activePatternIndex;
// const activePattern = trackData.patterns[activePatternIndex];
//
// DEPOIS:
    const activePatternIndex = trackData.activePatternIndex;
    const activePattern = trackData.patterns[activePatternIndex];
stepElement.addEventListener("click", () => {
toggleStepState(trackData.id, i);
stepElement.classList.toggle("active");
if (trackData && trackData.samplePath) {
playSample(trackData.samplePath, trackData.id);
}
});
    if (!activePattern) {
        sequencerContainer.innerHTML = ""; return;
    }
// ... resto da função ...
    const patternSteps = activePattern.steps;
const beatsPerBar = parseInt(document.getElementById("compasso-a-input").value, 10) || 4;
const groupIndex = Math.floor(i / beatsPerBar);
if (groupIndex % 2 === 0) {
stepElement.classList.add("step-dark");
}
    sequencerContainer.innerHTML = "";
    for (let i = 0; i < totalGridSteps; i++) {
      const stepWrapper = document.createElement("div");
      stepWrapper.className = "step-wrapper";
      const stepElement = document.createElement("div");
      stepElement.className = "step";
     
      if (patternSteps[i] === true) {
        stepElement.classList.add("active");
      }
const stepsPerBar = 16;
if (i > 0 && i % stepsPerBar === 0) {
const marker = document.createElement("div");
marker.className = "step-marker";
marker.textContent = Math.floor(i / stepsPerBar) + 1;
stepWrapper.appendChild(marker);
}
stepWrapper.appendChild(stepElement);
sequencerContainer.appendChild(stepWrapper);
}
});
      stepElement.addEventListener("click", () => {
initializeAudioContext(); // (V8)
const currentState = activePattern.steps[i] || false;
const isActive = !currentState;
sendAction({ // (V7)
type: 'TOGGLE_NOTE',
trackIndex: trackIndex,
patternIndex: activePatternIndex,
stepIndex: i,
isActive: isActive
});
        if (isActive && trackData && trackData.samplePath) {
          playSample(trackData.samplePath, trackData.id);
        }
      });
      const beatsPerBar = parseInt(document.getElementById("compasso-a-input").value, 10) || 4;
      const groupIndex = Math.floor(i / beatsPerBar);
      if (groupIndex % 2 === 0) {
        stepElement.classList.add("step-dark");
      }
      const stepsPerBar = 16;
      if (i > 0 && i % stepsPerBar === 0) {
        const marker = document.createElement("div");
        marker.className = "step-marker";
        marker.textContent = Math.floor(i / stepsPerBar) + 1;
        stepWrapper.appendChild(marker);
      }
     
      stepWrapper.appendChild(stepElement);
      sequencerContainer.appendChild(stepWrapper);
    }
  });
}
export function updateGlobalPatternSelector() {
const globalPatternSelector = document.getElementById('global-pattern-selector');
if (!globalPatternSelector) return;
    const globalPatternSelector = document.getElementById('global-pattern-selector');
    if (!globalPatternSelector) return;
const referenceTrack = appState.pattern.tracks[0];
globalPatternSelector.innerHTML = '';
if (referenceTrack && referenceTrack.patterns.length > 0) {
referenceTrack.patterns.forEach((pattern, index) => {
const option = document.createElement('option');
option.value = index;
option.textContent = pattern.name;
globalPatternSelector.appendChild(option);
});
globalPatternSelector.selectedIndex = appState.pattern.activePatternIndex;
globalPatternSelector.disabled = false;
} else {
const option = document.createElement('option');
option.textContent = 'Sem patterns';
globalPatternSelector.appendChild(option);
globalPatternSelector.disabled = true;
}
    const referenceTrack = appState.pattern.tracks[0];
    globalPatternSelector.innerHTML = '';
    if (referenceTrack && referenceTrack.patterns.length > 0) {
        referenceTrack.patterns.forEach((pattern, index) => {
            const option = document.createElement('option');
            option.value = index;
            option.textContent = pattern.name;
            globalPatternSelector.appendChild(option);
        });
        globalPatternSelector.selectedIndex = appState.pattern.activePatternIndex;
        globalPatternSelector.disabled = false;
    } else {
        const option = document.createElement('option');
        option.textContent = 'Sem patterns';
        globalPatternSelector.appendChild(option);
        globalPatternSelector.disabled = true;
    }
}
export function highlightStep(stepIndex, isActive) {
if (stepIndex < 0) return;
document.querySelectorAll(".track-lane").forEach((track) => {
const stepWrapper = track.querySelector(
`.step-sequencer .step-wrapper:nth-child(${stepIndex + 1})`
);
if (stepWrapper) {
const stepElement = stepWrapper.querySelector(".step");
if (stepElement) {
stepElement.classList.toggle("playing", isActive);
}
}
});
  if (stepIndex < 0) return;
  document.querySelectorAll(".track-lane").forEach((track) => {
    const stepWrapper = track.querySelector(
      `.step-sequencer .step-wrapper:nth-child(${stepIndex + 1})`
    );
    if (stepWrapper) {
      const stepElement = stepWrapper.querySelector(".step");
      if (stepElement) {
        stepElement.classList.toggle("playing", isActive);
      }
    }
  });
}
// (V7) Função de UI "cirúrgica"
export function updateStepUI(trackIndex, patternIndex, stepIndex, isActive) {
if (patternIndex !== appState.pattern.activePatternIndex) {
return;
}
const trackElement = document.querySelector(`.track-lane[data-track-index="${trackIndex}"]`);
if (!trackElement) return;
const stepWrapper = trackElement.querySelector(
`.step-sequencer .step-wrapper:nth-child(${stepIndex + 1})`
);
if (!stepWrapper) return;
const stepElement = stepWrapper.querySelector(".step");
if (!stepElement) return;
stepElement.classList.toggle("active", isActive);
}

View File

@ -145,7 +145,7 @@ async function _startRecording() {
} catch (err) {
console.error("Erro ao iniciar a gravação:", err);
appState.global.isRecording = false; //
_updateRecordButtonUI(false); //
_updateRecordButtonUI(false);
}
}
@ -188,7 +188,7 @@ async function _stopRecording() {
} catch (err) {
console.error("Erro ao parar a gravação:", err);
appState.global.isRecording = false; //
_updateRecordButtonUI(false); //
_updateRecordButtonUI(false);
}
}
@ -215,12 +215,9 @@ function _processRecording(blob) {
const clipName = `Rec_${new Date().toISOString().slice(11, 19).replace(/:/g, '-')}`;
// Adiciona o clipe à pista que já criamos
addAudioClipToTimeline(blobUrl, targetTrackId, 0, clipName); //
addAudioClipToTimeline(blobUrl, targetTrackId, 0, clipName, null); //
// addAudioClipToTimeline já chama o render, mas como o estado mudou
// (o clipe foi adicionado), renderizar de novo garante que o
// waveform *final* (do blob) seja desenhado corretamente.
renderAudioEditor(); //
// addAudioClipToTimeline já chama o render
}
/**

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,19 @@
{"level":30,"time":1761494713194,"pid":397981,"hostname":"ubuntu","timestamp":1761494713193,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
{"level":30,"time":1761494716581,"pid":397981,"hostname":"ubuntu","timestamp":1761494716581,"socketId":"eqWd8471vGWpq4EhAAAD","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"eqWd8471vGWpq4EhAAAD","__senderName":"Alicer-eqWd"},"msg":"action_received"}
{"level":30,"time":1761494720728,"pid":397981,"hostname":"ubuntu","timestamp":1761494720728,"socketId":"eqWd8471vGWpq4EhAAAD","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/909beat01.ogg","trackId":1761494647801,"startTimeInSeconds":0.5,"clipId":"58fe84a6-7e84-4d89-8971-6777376fbdbd","name":"909beat01.ogg","__token":"2","__senderId":"eqWd8471vGWpq4EhAAAD","__senderName":"Alicer-eqWd"},"msg":"action_received"}
{"level":30,"time":1761494723662,"pid":397981,"hostname":"ubuntu","timestamp":1761494723662,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"58fe84a6-7e84-4d89-8971-6777376fbdbd","props":{"trackId":1761494647801,"startTimeInSeconds":0.5},"__token":"2","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
{"level":30,"time":1761494724758,"pid":397981,"hostname":"ubuntu","timestamp":1761494724758,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"58fe84a6-7e84-4d89-8971-6777376fbdbd","props":{"trackId":1761494647801,"startTimeInSeconds":0.8333333333333333},"__token":"3","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
{"level":30,"time":1761494725710,"pid":397981,"hostname":"ubuntu","timestamp":1761494725710,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"58fe84a6-7e84-4d89-8971-6777376fbdbd","props":{"trackId":1761494647801,"startTimeInSeconds":0},"__token":"4","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
{"level":30,"time":1761494726870,"pid":397981,"hostname":"ubuntu","timestamp":1761494726870,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761494658269_ugophvk","__token":"5","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
{"level":30,"time":1761494727941,"pid":397981,"hostname":"ubuntu","timestamp":1761494727941,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"58fe84a6-7e84-4d89-8971-6777376fbdbd","props":{"trackId":null,"startTimeInSeconds":0},"__token":"6","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
{"level":30,"time":1761494731845,"pid":397981,"hostname":"ubuntu","timestamp":1761494731845,"socketId":"eqWd8471vGWpq4EhAAAD","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761494663244_d02eymw","__token":"3","__senderId":"eqWd8471vGWpq4EhAAAD","__senderName":"Alicer-eqWd"},"msg":"action_received"}
{"level":30,"time":1761494734034,"pid":397981,"hostname":"ubuntu","timestamp":1761494734034,"socketId":"WylZeyDwyf5qWGzsAAAH","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"WylZeyDwyf5qWGzsAAAH","__senderName":"Alicer-WylZ"},"msg":"action_received"}
{"level":30,"time":1761494734064,"pid":397981,"hostname":"ubuntu","timestamp":1761494734064,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":1761494644211,"name":"Pista de Áudio 1"},{"id":1761494647801,"name":"Pista de Áudio 2"},{"id":"track_1761494658269_ugophvk","name":"Pista de Áudio 3"},{"id":"track_1761494663244_d02eymw","name":"Pista de Áudio 4"}],"clips":[{"id":"58fe84a6-7e84-4d89-8971-6777376fbdbd","trackId":null,"name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9519166666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665}]},"__target":"WylZeyDwyf5qWGzsAAAH","__token":"7","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
{"level":30,"time":1761494738526,"pid":397981,"hostname":"ubuntu","timestamp":1761494738526,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/909beat01.ogg","trackId":"track_1761494663244_d02eymw","startTimeInSeconds":1.1666666666666665,"clipId":"01514ea7-ede5-4df8-81f5-01a469e1be1c","name":"909beat01.ogg","__token":"8","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
{"level":30,"time":1761494739782,"pid":397981,"hostname":"ubuntu","timestamp":1761494739782,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"01514ea7-ede5-4df8-81f5-01a469e1be1c","props":{"trackId":null,"startTimeInSeconds":1.3333333333333333},"__token":"9","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
{"level":30,"time":1761494746981,"pid":397981,"hostname":"ubuntu","timestamp":1761494746981,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/break02.ogg","trackId":1761494644211,"startTimeInSeconds":0.5,"clipId":"34487014-50f7-40c1-9c8d-30381e1ea54b","name":"break02.ogg","__token":"10","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
{"level":30,"time":1761494772093,"pid":397981,"hostname":"ubuntu","timestamp":1761494772093,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"RESET_PROJECT","__token":"11","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
{"level":30,"time":1761494778316,"pid":397981,"hostname":"ubuntu","timestamp":1761494778316,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/909beat01.ogg","trackId":1761494703529,"startTimeInSeconds":0.6428571428571428,"clipId":"e40762ee-3672-42f1-bf83-2efaae656777","name":"909beat01.ogg","__token":"12","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
{"level":30,"time":1761494828931,"pid":397981,"hostname":"ubuntu","timestamp":1761494828931,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761494760329_r251hkm","__token":"13","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
{"level":30,"time":1761494862258,"pid":397981,"hostname":"ubuntu","timestamp":1761494862258,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/break02.ogg","trackId":"track_1761494760329_r251hkm","startTimeInSeconds":0.42857142857142855,"clipId":"db4ef81a-6ee8-4cbb-8448-d2b5d0a50c7b","name":"break02.ogg","__token":"14","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
{"level":30,"time":1761494882822,"pid":397981,"hostname":"ubuntu","timestamp":1761494882822,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"db4ef81a-6ee8-4cbb-8448-d2b5d0a50c7b","props":{"trackId":null,"startTimeInSeconds":0.75},"__token":"15","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}

View File

@ -0,0 +1,30 @@
{"level":30,"time":1761495184353,"pid":405734,"hostname":"ubuntu","timestamp":1761495184352,"socketId":"L8ieb6DooE0sJ_I0AAAH","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"L8ieb6DooE0sJ_I0AAAH","__senderName":"Alicer-L8ie"},"msg":"action_received"}
{"level":30,"time":1761495184355,"pid":405734,"hostname":"ubuntu","timestamp":1761495184355,"socketId":"X7wjT0no2GaOXnrOAAAJ","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"X7wjT0no2GaOXnrOAAAJ","__senderName":"Alicer-X7wj"},"msg":"action_received"}
{"level":30,"time":1761495189423,"pid":405734,"hostname":"ubuntu","timestamp":1761495189423,"socketId":"L8ieb6DooE0sJ_I0AAAH","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/909beat01.ogg","trackId":1761495115257,"startTimeInSeconds":0.5,"clipId":"8d588036-4474-4eb7-9ea7-d88868478e55","name":"909beat01.ogg","__token":"2","__senderId":"L8ieb6DooE0sJ_I0AAAH","__senderName":"Alicer-L8ie"},"msg":"action_received"}
{"level":30,"time":1761495194611,"pid":405734,"hostname":"ubuntu","timestamp":1761495194611,"socketId":"X7wjT0no2GaOXnrOAAAJ","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"8d588036-4474-4eb7-9ea7-d88868478e55","props":{"trackId":1761495115257,"startTimeInSeconds":0.6666666666666666},"__token":"2","__senderId":"X7wjT0no2GaOXnrOAAAJ","__senderName":"Alicer-X7wj"},"msg":"action_received"}
{"level":30,"time":1761495195395,"pid":405734,"hostname":"ubuntu","timestamp":1761495195395,"socketId":"X7wjT0no2GaOXnrOAAAJ","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"8d588036-4474-4eb7-9ea7-d88868478e55","props":{"trackId":1761495115257,"startTimeInSeconds":1.1666666666666665},"__token":"3","__senderId":"X7wjT0no2GaOXnrOAAAJ","__senderName":"Alicer-X7wj"},"msg":"action_received"}
{"level":30,"time":1761495196228,"pid":405734,"hostname":"ubuntu","timestamp":1761495196228,"socketId":"X7wjT0no2GaOXnrOAAAJ","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"8d588036-4474-4eb7-9ea7-d88868478e55","props":{"trackId":1761495115257,"startTimeInSeconds":0.5},"__token":"4","__senderId":"X7wjT0no2GaOXnrOAAAJ","__senderName":"Alicer-X7wj"},"msg":"action_received"}
{"level":30,"time":1761495197123,"pid":405734,"hostname":"ubuntu","timestamp":1761495197123,"socketId":"X7wjT0no2GaOXnrOAAAJ","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"8d588036-4474-4eb7-9ea7-d88868478e55","props":{"trackId":1761495115257,"startTimeInSeconds":0},"__token":"5","__senderId":"X7wjT0no2GaOXnrOAAAJ","__senderName":"Alicer-X7wj"},"msg":"action_received"}
{"level":30,"time":1761495199271,"pid":405734,"hostname":"ubuntu","timestamp":1761495199271,"socketId":"lK34mYsi4Gi-TRMRAAAL","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"lK34mYsi4Gi-TRMRAAAL","__senderName":"Alicer-lK34"},"msg":"action_received"}
{"level":30,"time":1761495199301,"pid":405734,"hostname":"ubuntu","timestamp":1761495199300,"socketId":"L8ieb6DooE0sJ_I0AAAH","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":1761495115257,"name":"Pista de Áudio 1"}],"clips":[{"id":"8d588036-4474-4eb7-9ea7-d88868478e55","trackId":1761495115257,"name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9519166666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665}]},"__target":"lK34mYsi4Gi-TRMRAAAL","__token":"3","__senderId":"L8ieb6DooE0sJ_I0AAAH","__senderName":"Alicer-L8ie"},"msg":"action_received"}
{"level":30,"time":1761495201020,"pid":405734,"hostname":"ubuntu","timestamp":1761495201019,"socketId":"lK34mYsi4Gi-TRMRAAAL","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761495132411_l2gfjmb","__token":"2","__senderId":"lK34mYsi4Gi-TRMRAAAL","__senderName":"Alicer-lK34"},"msg":"action_received"}
{"level":30,"time":1761495201780,"pid":405734,"hostname":"ubuntu","timestamp":1761495201780,"socketId":"lK34mYsi4Gi-TRMRAAAL","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761495133171_43fvi70","__token":"3","__senderId":"lK34mYsi4Gi-TRMRAAAL","__senderName":"Alicer-lK34"},"msg":"action_received"}
{"level":30,"time":1761495202243,"pid":405734,"hostname":"ubuntu","timestamp":1761495202243,"socketId":"lK34mYsi4Gi-TRMRAAAL","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761495133635_esr6ipi","__token":"4","__senderId":"lK34mYsi4Gi-TRMRAAAL","__senderName":"Alicer-lK34"},"msg":"action_received"}
{"level":30,"time":1761495204986,"pid":405734,"hostname":"ubuntu","timestamp":1761495204986,"socketId":"L8ieb6DooE0sJ_I0AAAH","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/break02.ogg","trackId":"track_1761495132411_l2gfjmb","startTimeInSeconds":2,"clipId":"56919b45-085b-4319-a5a7-41220b330bb7","name":"break02.ogg","__token":"4","__senderId":"L8ieb6DooE0sJ_I0AAAH","__senderName":"Alicer-L8ie"},"msg":"action_received"}
{"level":30,"time":1761495207108,"pid":405734,"hostname":"ubuntu","timestamp":1761495207108,"socketId":"lK34mYsi4Gi-TRMRAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"56919b45-085b-4319-a5a7-41220b330bb7","props":{"trackId":null,"startTimeInSeconds":2},"__token":"5","__senderId":"lK34mYsi4Gi-TRMRAAAL","__senderName":"Alicer-lK34"},"msg":"action_received"}
{"level":30,"time":1761495211109,"pid":405734,"hostname":"ubuntu","timestamp":1761495211109,"socketId":"L8ieb6DooE0sJ_I0AAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"8d588036-4474-4eb7-9ea7-d88868478e55","props":{"trackId":null,"startTimeInSeconds":0},"__token":"5","__senderId":"L8ieb6DooE0sJ_I0AAAH","__senderName":"Alicer-L8ie"},"msg":"action_received"}
{"level":30,"time":1761495255286,"pid":405734,"hostname":"ubuntu","timestamp":1761495255286,"socketId":"dAZBororltnCTZH6AAAN","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"dAZBororltnCTZH6AAAN","__senderName":"Alicer-dAZB"},"msg":"action_received"}
{"level":30,"time":1761495255313,"pid":405734,"hostname":"ubuntu","timestamp":1761495255313,"socketId":"L8ieb6DooE0sJ_I0AAAH","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":1761495115257,"name":"Pista de Áudio 1"},{"id":"track_1761495132411_l2gfjmb","name":"Pista de Áudio 2"},{"id":"track_1761495133171_43fvi70","name":"Pista de Áudio 3"},{"id":"track_1761495133635_esr6ipi","name":"Pista de Áudio 4"}],"clips":[{"id":"8d588036-4474-4eb7-9ea7-d88868478e55","trackId":null,"name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9519166666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"56919b45-085b-4319-a5a7-41220b330bb7","trackId":null,"name":"break02.ogg","sourcePath":"src/samples/beats/break02.ogg","startTimeInSeconds":2,"durationInSeconds":1.7196875,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.7196875}]},"__target":"dAZBororltnCTZH6AAAN","__token":"6","__senderId":"L8ieb6DooE0sJ_I0AAAH","__senderName":"Alicer-L8ie"},"msg":"action_received"}
{"level":30,"time":1761495256511,"pid":405734,"hostname":"ubuntu","timestamp":1761495256511,"socketId":"FhwxWB_h7JF_2NnyAAAP","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"FhwxWB_h7JF_2NnyAAAP","__senderName":"Alicer-Fhwx"},"msg":"action_received"}
{"level":30,"time":1761495257946,"pid":405734,"hostname":"ubuntu","timestamp":1761495257946,"socketId":"NTyAxcbcEfhgmiV0AAAR","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"NTyAxcbcEfhgmiV0AAAR","__senderName":"Alicer-NTyA"},"msg":"action_received"}
{"level":30,"time":1761495259967,"pid":405734,"hostname":"ubuntu","timestamp":1761495259967,"socketId":"NTyAxcbcEfhgmiV0AAAR","action":{"type":"START_AUDIO_PLAYBACK","__token":"2","__senderId":"NTyAxcbcEfhgmiV0AAAR","__senderName":"Alicer-NTyA","scheduleAtServerMs":1761495260147},"msg":"action_received"}
{"level":30,"time":1761495261455,"pid":405734,"hostname":"ubuntu","timestamp":1761495261455,"socketId":"NTyAxcbcEfhgmiV0AAAR","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"3","__senderId":"NTyAxcbcEfhgmiV0AAAR","__senderName":"Alicer-NTyA","scheduleAtServerMs":1761495261635},"msg":"action_received"}
{"level":30,"time":1761495261911,"pid":405734,"hostname":"ubuntu","timestamp":1761495261911,"socketId":"NTyAxcbcEfhgmiV0AAAR","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"4","__senderId":"NTyAxcbcEfhgmiV0AAAR","__senderName":"Alicer-NTyA","scheduleAtServerMs":1761495262092},"msg":"action_received"}
{"level":30,"time":1761495264934,"pid":405734,"hostname":"ubuntu","timestamp":1761495264934,"socketId":"NTyAxcbcEfhgmiV0AAAR","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/909beat01.ogg","trackId":1761495188853,"startTimeInSeconds":1,"clipId":"bce38cc5-2b78-419b-8a57-39f97f76bb5b","name":"909beat01.ogg","__token":"5","__senderId":"NTyAxcbcEfhgmiV0AAAR","__senderName":"Alicer-NTyA"},"msg":"action_received"}
{"level":30,"time":1761495266783,"pid":405734,"hostname":"ubuntu","timestamp":1761495266783,"socketId":"NTyAxcbcEfhgmiV0AAAR","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"bce38cc5-2b78-419b-8a57-39f97f76bb5b","props":{"trackId":1761495188853,"startTimeInSeconds":0.5},"__token":"6","__senderId":"NTyAxcbcEfhgmiV0AAAR","__senderName":"Alicer-NTyA"},"msg":"action_received"}
{"level":30,"time":1761495268687,"pid":405734,"hostname":"ubuntu","timestamp":1761495268687,"socketId":"NTyAxcbcEfhgmiV0AAAR","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761495200078_tutmj39","__token":"7","__senderId":"NTyAxcbcEfhgmiV0AAAR","__senderName":"Alicer-NTyA"},"msg":"action_received"}
{"level":30,"time":1761495272943,"pid":405734,"hostname":"ubuntu","timestamp":1761495272943,"socketId":"NTyAxcbcEfhgmiV0AAAR","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"bce38cc5-2b78-419b-8a57-39f97f76bb5b","props":{"trackId":null,"startTimeInSeconds":0.16666666666666666},"__token":"8","__senderId":"NTyAxcbcEfhgmiV0AAAR","__senderName":"Alicer-NTyA"},"msg":"action_received"}
{"level":30,"time":1761495275929,"pid":405734,"hostname":"ubuntu","timestamp":1761495275929,"socketId":"zHeHgO5QafwQUSezAAAT","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"zHeHgO5QafwQUSezAAAT","__senderName":"Alicer-zHeH"},"msg":"action_received"}
{"level":30,"time":1761495275955,"pid":405734,"hostname":"ubuntu","timestamp":1761495275955,"socketId":"FhwxWB_h7JF_2NnyAAAP","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":1761495187729,"name":"Pista de Áudio 1"},{"id":1761495188853,"name":"Pista de Áudio 2"},{"id":"track_1761495200078_tutmj39","name":"Pista de Áudio 3"}],"clips":[{"id":"bce38cc5-2b78-419b-8a57-39f97f76bb5b","trackId":null,"name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0.16666666666666666,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375}]},"__target":"zHeHgO5QafwQUSezAAAT","__token":"2","__senderId":"FhwxWB_h7JF_2NnyAAAP","__senderName":"Alicer-Fhwx"},"msg":"action_received"}
{"level":30,"time":1761495277165,"pid":405734,"hostname":"ubuntu","timestamp":1761495277165,"socketId":"apzyjtNaVSLqx1c5AAAV","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"apzyjtNaVSLqx1c5AAAV","__senderName":"Alicer-apzy"},"msg":"action_received"}
{"level":30,"time":1761495277191,"pid":405734,"hostname":"ubuntu","timestamp":1761495277191,"socketId":"zHeHgO5QafwQUSezAAAT","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":1761495187729,"name":"Pista de Áudio 1"},{"id":1761495188853,"name":"Pista de Áudio 2"},{"id":"track_1761495200078_tutmj39","name":"Pista de Áudio 3"}],"clips":[{"id":"bce38cc5-2b78-419b-8a57-39f97f76bb5b","trackId":null,"name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0.16666666666666666,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665}]},"__target":"apzyjtNaVSLqx1c5AAAV","__token":"2","__senderId":"zHeHgO5QafwQUSezAAAT","__senderName":"Alicer-zHeH"},"msg":"action_received"}

View File

@ -0,0 +1,23 @@
{"level":30,"time":1761495735960,"pid":414826,"hostname":"ubuntu","timestamp":1761495735959,"socketId":"TaR_oJC64n80Y4XKAAAF","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"TaR_oJC64n80Y4XKAAAF","__senderName":"Alicer-TaR_"},"msg":"action_received"}
{"level":30,"time":1761495737661,"pid":414826,"hostname":"ubuntu","timestamp":1761495737661,"socketId":"4Y6oMegF2booRWEBAAAH","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"4Y6oMegF2booRWEBAAAH","__senderName":"Alicer-4Y6o"},"msg":"action_received"}
{"level":30,"time":1761495743687,"pid":414826,"hostname":"ubuntu","timestamp":1761495743687,"socketId":"4Y6oMegF2booRWEBAAAH","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/909beat01.ogg","trackId":1761495668600,"startTimeInSeconds":1,"clipId":"5de971f3-ae8b-41b5-a68b-24008783844e","name":"909beat01.ogg","__token":"2","__senderId":"4Y6oMegF2booRWEBAAAH","__senderName":"Alicer-4Y6o"},"msg":"action_received"}
{"level":30,"time":1761495749057,"pid":414826,"hostname":"ubuntu","timestamp":1761495749057,"socketId":"4Y6oMegF2booRWEBAAAH","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761495680437_5b0cy18","__token":"3","__senderId":"4Y6oMegF2booRWEBAAAH","__senderName":"Alicer-4Y6o"},"msg":"action_received"}
{"level":30,"time":1761495753150,"pid":414826,"hostname":"ubuntu","timestamp":1761495753150,"socketId":"WPsyHtdNVcdj4ylgAAAJ","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"WPsyHtdNVcdj4ylgAAAJ","__senderName":"Alicer-WPsy"},"msg":"action_received"}
{"level":30,"time":1761495753178,"pid":414826,"hostname":"ubuntu","timestamp":1761495753178,"socketId":"4Y6oMegF2booRWEBAAAH","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":1761495668600,"name":"Pista de Áudio 1"},{"id":"track_1761495680437_5b0cy18","name":"Pista de Áudio 2"}],"clips":[{"id":"5de971f3-ae8b-41b5-a68b-24008783844e","trackId":1761495668600,"name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":1.6666666666666665,"durationInSeconds":3.9519166666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665}]},"__target":"WPsyHtdNVcdj4ylgAAAJ","__token":"4","__senderId":"4Y6oMegF2booRWEBAAAH","__senderName":"Alicer-4Y6o"},"msg":"action_received"}
{"level":30,"time":1761495870014,"pid":414826,"hostname":"ubuntu","timestamp":1761495870014,"socketId":"hlUhVvPih7yL9C4lAAAL","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"hlUhVvPih7yL9C4lAAAL","__senderName":"Alicer-hlUh"},"msg":"action_received"}
{"level":30,"time":1761495871385,"pid":414826,"hostname":"ubuntu","timestamp":1761495871385,"socketId":"oxKq3DUSMoXvjQttAAAN","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"oxKq3DUSMoXvjQttAAAN","__senderName":"Alicer-oxKq"},"msg":"action_received"}
{"level":30,"time":1761495874919,"pid":414826,"hostname":"ubuntu","timestamp":1761495874919,"socketId":"oxKq3DUSMoXvjQttAAAN","action":{"type":"START_AUDIO_PLAYBACK","__token":"2","__senderId":"oxKq3DUSMoXvjQttAAAN","__senderName":"Alicer-oxKq","scheduleAtServerMs":1761495875088},"msg":"action_received"}
{"level":30,"time":1761495878530,"pid":414826,"hostname":"ubuntu","timestamp":1761495878530,"socketId":"oxKq3DUSMoXvjQttAAAN","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"3","__senderId":"oxKq3DUSMoXvjQttAAAN","__senderName":"Alicer-oxKq","scheduleAtServerMs":1761495878699},"msg":"action_received"}
{"level":30,"time":1761495879060,"pid":414826,"hostname":"ubuntu","timestamp":1761495879060,"socketId":"oxKq3DUSMoXvjQttAAAN","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"4","__senderId":"oxKq3DUSMoXvjQttAAAN","__senderName":"Alicer-oxKq","scheduleAtServerMs":1761495879232},"msg":"action_received"}
{"level":30,"time":1761495885949,"pid":414826,"hostname":"ubuntu","timestamp":1761495885949,"socketId":"hlUhVvPih7yL9C4lAAAL","action":{"type":"START_AUDIO_PLAYBACK","__token":"2","__senderId":"hlUhVvPih7yL9C4lAAAL","__senderName":"Alicer-hlUh","scheduleAtServerMs":1761495886136},"msg":"action_received"}
{"level":30,"time":1761495887837,"pid":414826,"hostname":"ubuntu","timestamp":1761495887837,"socketId":"hlUhVvPih7yL9C4lAAAL","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"3","__senderId":"hlUhVvPih7yL9C4lAAAL","__senderName":"Alicer-hlUh","scheduleAtServerMs":1761495888022},"msg":"action_received"}
{"level":30,"time":1761495890823,"pid":414826,"hostname":"ubuntu","timestamp":1761495890823,"socketId":"33lhZvhd_iUQZf3cAAAP","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"33lhZvhd_iUQZf3cAAAP","__senderName":"Alicer-33lh"},"msg":"action_received"}
{"level":30,"time":1761495891399,"pid":414826,"hostname":"ubuntu","timestamp":1761495891399,"socketId":"33lhZvhd_iUQZf3cAAAP","action":{"type":"START_AUDIO_PLAYBACK","__token":"2","__senderId":"33lhZvhd_iUQZf3cAAAP","__senderName":"Alicer-33lh","scheduleAtServerMs":1761495891565},"msg":"action_received"}
{"level":30,"time":1761495894195,"pid":414826,"hostname":"ubuntu","timestamp":1761495894195,"socketId":"33lhZvhd_iUQZf3cAAAP","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"3","__senderId":"33lhZvhd_iUQZf3cAAAP","__senderName":"Alicer-33lh","scheduleAtServerMs":1761495894361},"msg":"action_received"}
{"level":30,"time":1761495901287,"pid":414826,"hostname":"ubuntu","timestamp":1761495901287,"socketId":"33lhZvhd_iUQZf3cAAAP","action":{"type":"START_AUDIO_PLAYBACK","__token":"4","__senderId":"33lhZvhd_iUQZf3cAAAP","__senderName":"Alicer-33lh","scheduleAtServerMs":1761495901473},"msg":"action_received"}
{"level":30,"time":1761495915926,"pid":414826,"hostname":"ubuntu","timestamp":1761495915926,"socketId":"hlUhVvPih7yL9C4lAAAL","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"4","__senderId":"hlUhVvPih7yL9C4lAAAL","__senderName":"Alicer-hlUh","scheduleAtServerMs":1761495916112},"msg":"action_received"}
{"level":30,"time":1761496198551,"pid":414826,"hostname":"ubuntu","timestamp":1761496198551,"socketId":"33lhZvhd_iUQZf3cAAAP","action":{"type":"TOGGLE_PLAYBACK","__token":"5","__senderId":"33lhZvhd_iUQZf3cAAAP","__senderName":"Alicer-33lh","scheduleAtServerMs":1761496198735},"msg":"action_received"}
{"level":30,"time":1761496200399,"pid":414826,"hostname":"ubuntu","timestamp":1761496200399,"socketId":"33lhZvhd_iUQZf3cAAAP","action":{"type":"STOP_PLAYBACK","__token":"6","__senderId":"33lhZvhd_iUQZf3cAAAP","__senderName":"Alicer-33lh","scheduleAtServerMs":1761496200585},"msg":"action_received"}
{"level":30,"time":1761496213639,"pid":414826,"hostname":"ubuntu","timestamp":1761496213639,"socketId":"hlUhVvPih7yL9C4lAAAL","action":{"type":"RESET_PROJECT","__token":"5","__senderId":"hlUhVvPih7yL9C4lAAAL","__senderName":"Alicer-hlUh"},"msg":"action_received"}
{"level":30,"time":1761496221430,"pid":414826,"hostname":"ubuntu","timestamp":1761496221430,"socketId":"7kPfJWClCba0R6FTAAAR","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"7kPfJWClCba0R6FTAAAR","__senderName":"Alicer-7kPf"},"msg":"action_received"}
{"level":30,"time":1761496224313,"pid":414826,"hostname":"ubuntu","timestamp":1761496224313,"socketId":"RwC8lCmA5wzrBnScAAAT","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"RwC8lCmA5wzrBnScAAAT","__senderName":"Alicer-RwC8"},"msg":"action_received"}

View File

@ -0,0 +1,138 @@
{"level":30,"time":1761496533820,"pid":427026,"hostname":"ubuntu","timestamp":1761496533819,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761496535998,"pid":427026,"hostname":"ubuntu","timestamp":1761496535998,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496540677,"pid":427026,"hostname":"ubuntu","timestamp":1761496540677,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761496472045_bk9iq61","__token":"2","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761496541983,"pid":427026,"hostname":"ubuntu","timestamp":1761496541983,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761496473349_gzy9jf5","__token":"3","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761496547957,"pid":427026,"hostname":"ubuntu","timestamp":1761496547957,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/909beat01.ogg","trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":0.8333333333333333,"clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","name":"909beat01.ogg","__token":"4","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761496549398,"pid":427026,"hostname":"ubuntu","timestamp":1761496549398,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":0.8333333333333333},"__token":"5","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761496550549,"pid":427026,"hostname":"ubuntu","timestamp":1761496550549,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":0.5},"__token":"6","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761496552735,"pid":427026,"hostname":"ubuntu","timestamp":1761496552735,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":0},"__token":"7","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761496553638,"pid":427026,"hostname":"ubuntu","timestamp":1761496553638,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":0},"__token":"8","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761496554645,"pid":427026,"hostname":"ubuntu","timestamp":1761496554645,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":0.6666666666666666},"__token":"9","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761496555333,"pid":427026,"hostname":"ubuntu","timestamp":1761496555333,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":1},"__token":"10","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761496556005,"pid":427026,"hostname":"ubuntu","timestamp":1761496556005,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":1.5},"__token":"11","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761496556845,"pid":427026,"hostname":"ubuntu","timestamp":1761496556845,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":0.5},"__token":"12","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761496557676,"pid":427026,"hostname":"ubuntu","timestamp":1761496557676,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":0},"__token":"13","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761496559726,"pid":427026,"hostname":"ubuntu","timestamp":1761496559726,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"START_AUDIO_PLAYBACK","__token":"14","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU","scheduleAtServerMs":1761496559910},"msg":"action_received"}
{"level":30,"time":1761496562109,"pid":427026,"hostname":"ubuntu","timestamp":1761496562109,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":false,"__token":"15","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU","scheduleAtServerMs":1761496562294},"msg":"action_received"}
{"level":30,"time":1761496564149,"pid":427026,"hostname":"ubuntu","timestamp":1761496564149,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"START_AUDIO_PLAYBACK","__token":"2","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ","scheduleAtServerMs":1761496564334},"msg":"action_received"}
{"level":30,"time":1761496566287,"pid":427026,"hostname":"ubuntu","timestamp":1761496566287,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"3","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ","scheduleAtServerMs":1761496566473},"msg":"action_received"}
{"level":30,"time":1761496570973,"pid":427026,"hostname":"ubuntu","timestamp":1761496570973,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":0},"__token":"16","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761496572340,"pid":427026,"hostname":"ubuntu","timestamp":1761496572340,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":0.16666666666666666},"__token":"4","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496573228,"pid":427026,"hostname":"ubuntu","timestamp":1761496573228,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":0.5},"__token":"5","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496573980,"pid":427026,"hostname":"ubuntu","timestamp":1761496573980,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":0.8333333333333333},"__token":"6","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496575548,"pid":427026,"hostname":"ubuntu","timestamp":1761496575548,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761496506916_h72okks","__token":"7","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496575939,"pid":427026,"hostname":"ubuntu","timestamp":1761496575939,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761496507307_4ns0apy","__token":"8","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496576316,"pid":427026,"hostname":"ubuntu","timestamp":1761496576316,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761496507683_5ki5kwa","__token":"9","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496577172,"pid":427026,"hostname":"ubuntu","timestamp":1761496577172,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":0.6666666666666666},"__token":"10","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496577884,"pid":427026,"hostname":"ubuntu","timestamp":1761496577884,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":0.5},"__token":"11","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496578788,"pid":427026,"hostname":"ubuntu","timestamp":1761496578788,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":0.3333333333333333},"__token":"12","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496579492,"pid":427026,"hostname":"ubuntu","timestamp":1761496579492,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496507307_4ns0apy","startTimeInSeconds":0.16666666666666666},"__token":"13","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496580284,"pid":427026,"hostname":"ubuntu","timestamp":1761496580284,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":0},"__token":"14","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496581732,"pid":427026,"hostname":"ubuntu","timestamp":1761496581732,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":0},"__token":"15","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496582662,"pid":427026,"hostname":"ubuntu","timestamp":1761496582662,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":0.3333333333333333},"__token":"16","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496583445,"pid":427026,"hostname":"ubuntu","timestamp":1761496583445,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":0.3333333333333333},"__token":"17","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496584365,"pid":427026,"hostname":"ubuntu","timestamp":1761496584365,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":0},"__token":"18","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496732327,"pid":427026,"hostname":"ubuntu","timestamp":1761496732327,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":0},"__token":"17","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761496739639,"pid":427026,"hostname":"ubuntu","timestamp":1761496739639,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"__operation":"slice","sliceTimeInTimeline":2.833333333333333},"__token":"19","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496740517,"pid":427026,"hostname":"ubuntu","timestamp":1761496740517,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"__operation":"slice","sliceTimeInTimeline":2.5},"__token":"20","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496741226,"pid":427026,"hostname":"ubuntu","timestamp":1761496741226,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"__operation":"slice","sliceTimeInTimeline":1.8333333333333333},"__token":"21","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496746584,"pid":427026,"hostname":"ubuntu","timestamp":1761496746584,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":0},"__token":"22","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496747629,"pid":427026,"hostname":"ubuntu","timestamp":1761496747629,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9d2b972-6789-4e58-b478-9feb888dfd58","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":1.5},"__token":"23","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496749771,"pid":427026,"hostname":"ubuntu","timestamp":1761496749771,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"90a10544-b85e-49f5-8f8e-3e623e38b171","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":1.1666666666666665},"__token":"24","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496751139,"pid":427026,"hostname":"ubuntu","timestamp":1761496751139,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"ec968ca2-3ce4-407b-8e67-cfac6e1071fa","props":{"trackId":"track_1761496507307_4ns0apy","startTimeInSeconds":2.833333333333333},"__token":"25","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496752483,"pid":427026,"hostname":"ubuntu","timestamp":1761496752483,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9d2b972-6789-4e58-b478-9feb888dfd58","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":1.5},"__token":"26","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496760445,"pid":427026,"hostname":"ubuntu","timestamp":1761496760445,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/break01.ogg","trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":0.16666666666666666,"clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","name":"break01.ogg","__token":"27","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496761569,"pid":427026,"hostname":"ubuntu","timestamp":1761496761569,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":0.3333333333333333},"__token":"28","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496762605,"pid":427026,"hostname":"ubuntu","timestamp":1761496762605,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":0.6666666666666666},"__token":"29","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496763766,"pid":427026,"hostname":"ubuntu","timestamp":1761496763766,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":1.1666666666666665},"__token":"30","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496764629,"pid":427026,"hostname":"ubuntu","timestamp":1761496764629,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":0.5},"__token":"31","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496765481,"pid":427026,"hostname":"ubuntu","timestamp":1761496765481,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":0.16666666666666666},"__token":"32","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496766323,"pid":427026,"hostname":"ubuntu","timestamp":1761496766323,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":0},"__token":"33","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
{"level":30,"time":1761496884979,"pid":427026,"hostname":"ubuntu","timestamp":1761496884979,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761496816341_ty0ecyo","__token":"18","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761496895441,"pid":427026,"hostname":"ubuntu","timestamp":1761496895441,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/jungle01.ogg","trackId":"track_1761496816341_ty0ecyo","startTimeInSeconds":1.8333333333333333,"clipId":"df1366bd-572c-415f-9294-25b05d4b93f4","name":"jungle01.ogg","__token":"19","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761496897913,"pid":427026,"hostname":"ubuntu","timestamp":1761496897913,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"df1366bd-572c-415f-9294-25b05d4b93f4","props":{"trackId":"track_1761496816341_ty0ecyo","startTimeInSeconds":1.6666666666666665},"__token":"20","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761496899340,"pid":427026,"hostname":"ubuntu","timestamp":1761496899340,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"START_AUDIO_PLAYBACK","__token":"21","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU","scheduleAtServerMs":1761496899525},"msg":"action_received"}
{"level":30,"time":1761496900443,"pid":427026,"hostname":"ubuntu","timestamp":1761496900443,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"22","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU","scheduleAtServerMs":1761496900630},"msg":"action_received"}
{"level":30,"time":1761496904171,"pid":427026,"hostname":"ubuntu","timestamp":1761496904171,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"TOGGLE_PLAYBACK","__token":"34","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ","scheduleAtServerMs":1761496904358},"msg":"action_received"}
{"level":30,"time":1761496905429,"pid":427026,"hostname":"ubuntu","timestamp":1761496905429,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"STOP_PLAYBACK","__token":"35","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ","scheduleAtServerMs":1761496905615},"msg":"action_received"}
{"level":30,"time":1761496996152,"pid":427026,"hostname":"ubuntu","timestamp":1761496996152,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
{"level":30,"time":1761496996220,"pid":427026,"hostname":"ubuntu","timestamp":1761496996220,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761496472045_bk9iq61","name":"Pista de Áudio 1"},{"id":"track_1761496473349_gzy9jf5","name":"Pista de Áudio 2"},{"id":"track_1761496506916_h72okks","name":"Pista de Áudio 3"},{"id":"track_1761496507307_4ns0apy","name":"Pista de Áudio 4"},{"id":"track_1761496507683_5ki5kwa","name":"Pista de Áudio 5"},{"id":"track_1761496816341_ty0ecyo","name":"Pista de Áudio 6"}],"clips":[{"id":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","trackId":"track_1761496472045_bk9iq61","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":1.8333333333333333,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"1c80af4e-aaa9-4046-8fb2-a6915ebb097f","trackId":"track_1761496506916_h72okks","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":2.833333333333333,"durationInSeconds":1.1185833333333335,"offset":2.833333333333333,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"b9134121-180e-4878-aec2-db4bceb41936","trackId":"track_1761496506916_h72okks","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":2.5,"durationInSeconds":0.33333333333333304,"offset":2.5,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"db97322c-d4a9-47c4-bce5-ce5f59adfd13","trackId":"track_1761496506916_h72okks","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":1.8333333333333333,"durationInSeconds":0.6666666666666667,"offset":1.8333333333333333,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","trackId":"track_1761496507683_5ki5kwa","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":0,"durationInSeconds":1.4391875,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875},{"id":"df1366bd-572c-415f-9294-25b05d4b93f4","trackId":"track_1761496816341_ty0ecyo","name":"jungle01.ogg","sourcePath":"src/samples/beats/jungle01.ogg","startTimeInSeconds":1.6666666666666665,"durationInSeconds":2.779916666666667,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":2.779916666666667}]},"__target":"9mWPXtgKH7suYhLBAAAH","__token":"23","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761497125360,"pid":427026,"hostname":"ubuntu","timestamp":1761497125360,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"df1366bd-572c-415f-9294-25b05d4b93f4","props":{"__operation":"slice","sliceTimeInTimeline":3.333333333333333},"__token":"2","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
{"level":30,"time":1761497129069,"pid":427026,"hostname":"ubuntu","timestamp":1761497129069,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"df1366bd-572c-415f-9294-25b05d4b93f4","props":{"trackId":"track_1761496816341_ty0ecyo","startTimeInSeconds":1.6666666666666665},"__token":"3","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
{"level":30,"time":1761497132798,"pid":427026,"hostname":"ubuntu","timestamp":1761497132798,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"df1366bd-572c-415f-9294-25b05d4b93f4","props":{"trackId":"track_1761496507307_4ns0apy","startTimeInSeconds":1.6666666666666665},"__token":"4","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
{"level":30,"time":1761497133486,"pid":427026,"hostname":"ubuntu","timestamp":1761497133486,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"df1366bd-572c-415f-9294-25b05d4b93f4","props":{"trackId":"track_1761496507307_4ns0apy","startTimeInSeconds":1.6666666666666665},"__token":"5","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
{"level":30,"time":1761497135702,"pid":427026,"hostname":"ubuntu","timestamp":1761497135702,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"df1366bd-572c-415f-9294-25b05d4b93f4","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":0.8333333333333333},"__token":"6","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
{"level":30,"time":1761497136822,"pid":427026,"hostname":"ubuntu","timestamp":1761497136822,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"df1366bd-572c-415f-9294-25b05d4b93f4","props":{"trackId":"track_1761496507307_4ns0apy","startTimeInSeconds":0.8333333333333333},"__token":"7","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
{"level":30,"time":1761497138654,"pid":427026,"hostname":"ubuntu","timestamp":1761497138654,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"df1366bd-572c-415f-9294-25b05d4b93f4","props":{"trackId":"track_1761496816341_ty0ecyo","startTimeInSeconds":1.1666666666666665},"__token":"8","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
{"level":30,"time":1761497139750,"pid":427026,"hostname":"ubuntu","timestamp":1761497139750,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"df1366bd-572c-415f-9294-25b05d4b93f4","props":{"trackId":"track_1761496816341_ty0ecyo","startTimeInSeconds":1},"__token":"9","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
{"level":30,"time":1761497141480,"pid":427026,"hostname":"ubuntu","timestamp":1761497141480,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":2.333333333333333},"__token":"10","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
{"level":30,"time":1761497153551,"pid":427026,"hostname":"ubuntu","timestamp":1761497153551,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":2.333333333333333},"__token":"11","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
{"level":30,"time":1761497154728,"pid":427026,"hostname":"ubuntu","timestamp":1761497154728,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":2.333333333333333},"__token":"12","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
{"level":30,"time":1761497157776,"pid":427026,"hostname":"ubuntu","timestamp":1761497157776,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"db97322c-d4a9-47c4-bce5-ce5f59adfd13","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":1.1666666666666665},"__token":"13","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
{"level":30,"time":1761497159568,"pid":427026,"hostname":"ubuntu","timestamp":1761497159568,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":0.16666666666666666},"__token":"14","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
{"level":30,"time":1761497160393,"pid":427026,"hostname":"ubuntu","timestamp":1761497160392,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":0.5},"__token":"15","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
{"level":30,"time":1761497161448,"pid":427026,"hostname":"ubuntu","timestamp":1761497161448,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":0.16666666666666666},"__token":"16","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
{"level":30,"time":1761497162279,"pid":427026,"hostname":"ubuntu","timestamp":1761497162279,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":0},"__token":"17","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
{"level":30,"time":1761497163583,"pid":427026,"hostname":"ubuntu","timestamp":1761497163583,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"db97322c-d4a9-47c4-bce5-ce5f59adfd13","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":0.8333333333333333},"__token":"18","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
{"level":30,"time":1761497165816,"pid":427026,"hostname":"ubuntu","timestamp":1761497165816,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"1c80af4e-aaa9-4046-8fb2-a6915ebb097f","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":3},"__token":"19","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
{"level":30,"time":1761497166825,"pid":427026,"hostname":"ubuntu","timestamp":1761497166825,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"1c80af4e-aaa9-4046-8fb2-a6915ebb097f","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":3},"__token":"20","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
{"level":30,"time":1761497167976,"pid":427026,"hostname":"ubuntu","timestamp":1761497167976,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"1c80af4e-aaa9-4046-8fb2-a6915ebb097f","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":3},"__token":"21","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
{"level":30,"time":1761497169529,"pid":427026,"hostname":"ubuntu","timestamp":1761497169529,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"startTimeInSeconds":2.5,"durationInSeconds":0.1875,"offset":2.666666666666667,"pitch":0},"__token":"24","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761497171114,"pid":427026,"hostname":"ubuntu","timestamp":1761497171114,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"startTimeInSeconds":2.1666666666666665,"durationInSeconds":0.5416666666666666,"offset":2.3333333333333335,"pitch":0},"__token":"25","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761497172897,"pid":427026,"hostname":"ubuntu","timestamp":1761497172897,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"startTimeInSeconds":1.3333333333333333,"durationInSeconds":1.3958333333333333,"offset":1.5000000000000002,"pitch":0},"__token":"26","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761497175177,"pid":427026,"hostname":"ubuntu","timestamp":1761497175177,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":2.1666666666666665},"__token":"27","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761497176664,"pid":427026,"hostname":"ubuntu","timestamp":1761497176664,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":2.1666666666666665},"__token":"28","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761497177736,"pid":427026,"hostname":"ubuntu","timestamp":1761497177736,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":2},"__token":"29","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761497202443,"pid":427026,"hostname":"ubuntu","timestamp":1761497202443,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"__operation":"slice","sliceTimeInTimeline":1},"__token":"22","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
{"level":30,"time":1761497205537,"pid":427026,"hostname":"ubuntu","timestamp":1761497205537,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"24e73fc0-9025-4a0f-88c8-69aa841c8d80","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":2.1666666666666665},"__token":"23","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
{"level":30,"time":1761497207282,"pid":427026,"hostname":"ubuntu","timestamp":1761497207282,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"24e73fc0-9025-4a0f-88c8-69aa841c8d80","props":{"startTimeInSeconds":1.5,"durationInSeconds":1.5208333333333333,"offset":0.3333333333333335,"pitch":0},"__token":"24","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
{"level":30,"time":1761497210338,"pid":427026,"hostname":"ubuntu","timestamp":1761497210338,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"START_AUDIO_PLAYBACK","__token":"25","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP","scheduleAtServerMs":1761497210525},"msg":"action_received"}
{"level":30,"time":1761497213258,"pid":427026,"hostname":"ubuntu","timestamp":1761497213258,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"26","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP","scheduleAtServerMs":1761497213445},"msg":"action_received"}
{"level":30,"time":1761498540817,"pid":427026,"hostname":"ubuntu","timestamp":1761498540817,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":0.16666666666666666},"__token":"27","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
{"level":30,"time":1761498542170,"pid":427026,"hostname":"ubuntu","timestamp":1761498542170,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":0},"__token":"28","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
{"level":30,"time":1761498544290,"pid":427026,"hostname":"ubuntu","timestamp":1761498544290,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"7ee261c5-24cd-411e-8050-85c39e039c5b","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":1.8333333333333333},"__token":"30","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761498545491,"pid":427026,"hostname":"ubuntu","timestamp":1761498545491,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"7ee261c5-24cd-411e-8050-85c39e039c5b","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":2},"__token":"31","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761498546358,"pid":427026,"hostname":"ubuntu","timestamp":1761498546358,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"7ee261c5-24cd-411e-8050-85c39e039c5b","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":1.6666666666666665},"__token":"32","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761498547529,"pid":427026,"hostname":"ubuntu","timestamp":1761498547529,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"7ee261c5-24cd-411e-8050-85c39e039c5b","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":1.8333333333333333},"__token":"33","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761498548777,"pid":427026,"hostname":"ubuntu","timestamp":1761498548777,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"7ee261c5-24cd-411e-8050-85c39e039c5b","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":1},"__token":"34","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761498550379,"pid":427026,"hostname":"ubuntu","timestamp":1761498550379,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"7ee261c5-24cd-411e-8050-85c39e039c5b","props":{"trackId":"track_1761496507307_4ns0apy","startTimeInSeconds":0.16666666666666666},"__token":"35","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761498551372,"pid":427026,"hostname":"ubuntu","timestamp":1761498551372,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"7ee261c5-24cd-411e-8050-85c39e039c5b","props":{"trackId":"track_1761496507307_4ns0apy","startTimeInSeconds":1.1666666666666665},"__token":"36","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761498552308,"pid":427026,"hostname":"ubuntu","timestamp":1761498552308,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"7ee261c5-24cd-411e-8050-85c39e039c5b","props":{"trackId":"track_1761496507307_4ns0apy","startTimeInSeconds":1.1666666666666665},"__token":"37","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761498552860,"pid":427026,"hostname":"ubuntu","timestamp":1761498552860,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"7ee261c5-24cd-411e-8050-85c39e039c5b","props":{"trackId":"track_1761496507307_4ns0apy","startTimeInSeconds":1.1666666666666665},"__token":"38","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761498553444,"pid":427026,"hostname":"ubuntu","timestamp":1761498553444,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"7ee261c5-24cd-411e-8050-85c39e039c5b","props":{"trackId":"track_1761496507307_4ns0apy","startTimeInSeconds":1.1666666666666665},"__token":"39","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761498554340,"pid":427026,"hostname":"ubuntu","timestamp":1761498554340,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"REMOVE_AUDIO_CLIP","clipId":"7ee261c5-24cd-411e-8050-85c39e039c5b","__token":"40","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761498560257,"pid":427026,"hostname":"ubuntu","timestamp":1761498560257,"socketId":"LElghM2sTToa0pBlAAAJ","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"LElghM2sTToa0pBlAAAJ","__senderName":"Alicer-LElg"},"msg":"action_received"}
{"level":30,"time":1761498560288,"pid":427026,"hostname":"ubuntu","timestamp":1761498560288,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761496472045_bk9iq61","name":"Pista de Áudio 1"},{"id":"track_1761496473349_gzy9jf5","name":"Pista de Áudio 2"},{"id":"track_1761496506916_h72okks","name":"Pista de Áudio 3"},{"id":"track_1761496507307_4ns0apy","name":"Pista de Áudio 4"},{"id":"track_1761496507683_5ki5kwa","name":"Pista de Áudio 5"},{"id":"track_1761496816341_ty0ecyo","name":"Pista de Áudio 6"}],"clips":[{"id":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","trackId":"track_1761496472045_bk9iq61","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":1,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"1c80af4e-aaa9-4046-8fb2-a6915ebb097f","trackId":"track_1761496506916_h72okks","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":3,"durationInSeconds":1.1185833333333335,"offset":2.833333333333333,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"b9134121-180e-4878-aec2-db4bceb41936","trackId":"track_1761496473349_gzy9jf5","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":2,"durationInSeconds":1.3958333333333333,"offset":1.5000000000000002,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"db97322c-d4a9-47c4-bce5-ce5f59adfd13","trackId":"track_1761496506916_h72okks","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0.8333333333333333,"durationInSeconds":0.6666666666666667,"offset":1.8333333333333333,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","trackId":"track_1761496507683_5ki5kwa","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":0,"durationInSeconds":1.4391875,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875},{"id":"df1366bd-572c-415f-9294-25b05d4b93f4","trackId":"track_1761496816341_ty0ecyo","name":"jungle01.ogg","sourcePath":"src/samples/beats/jungle01.ogg","startTimeInSeconds":1,"durationInSeconds":1.6666666666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":2.779916666666667},{"id":"a781562c-029e-40d1-ae2f-d36266c6e0b9","trackId":"track_1761496816341_ty0ecyo","name":"jungle01.ogg","sourcePath":"src/samples/beats/jungle01.ogg","startTimeInSeconds":3.333333333333333,"durationInSeconds":1.1132500000000003,"offset":1.6666666666666665,"pitch":0,"volume":0.8,"pan":0,"originalDuration":2.779916666666667}]},"__target":"LElghM2sTToa0pBlAAAJ","__token":"41","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761498562417,"pid":427026,"hostname":"ubuntu","timestamp":1761498562417,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"db97322c-d4a9-47c4-bce5-ce5f59adfd13","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":1},"__token":"42","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761498563387,"pid":427026,"hostname":"ubuntu","timestamp":1761498563387,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"db97322c-d4a9-47c4-bce5-ce5f59adfd13","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":0.8333333333333333},"__token":"43","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761498564098,"pid":427026,"hostname":"ubuntu","timestamp":1761498564098,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"db97322c-d4a9-47c4-bce5-ce5f59adfd13","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":1},"__token":"44","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761498564859,"pid":427026,"hostname":"ubuntu","timestamp":1761498564859,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"db97322c-d4a9-47c4-bce5-ce5f59adfd13","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":0.8333333333333333},"__token":"45","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761498565453,"pid":427026,"hostname":"ubuntu","timestamp":1761498565453,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"db97322c-d4a9-47c4-bce5-ce5f59adfd13","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":1},"__token":"46","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761498566811,"pid":427026,"hostname":"ubuntu","timestamp":1761498566811,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":2},"__token":"47","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761498567670,"pid":427026,"hostname":"ubuntu","timestamp":1761498567670,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":2},"__token":"48","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
{"level":30,"time":1761498570611,"pid":427026,"hostname":"ubuntu","timestamp":1761498570611,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"START_AUDIO_PLAYBACK","__token":"49","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU","scheduleAtServerMs":1761498570798},"msg":"action_received"}
{"level":30,"time":1761498572916,"pid":427026,"hostname":"ubuntu","timestamp":1761498572916,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"50","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU","scheduleAtServerMs":1761498573101},"msg":"action_received"}
{"level":30,"time":1761498573523,"pid":427026,"hostname":"ubuntu","timestamp":1761498573523,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"51","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU","scheduleAtServerMs":1761498573710},"msg":"action_received"}
{"level":30,"time":1761498577580,"pid":427026,"hostname":"ubuntu","timestamp":1761498577580,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"START_AUDIO_PLAYBACK","__token":"52","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU","scheduleAtServerMs":1761498577765},"msg":"action_received"}
{"level":30,"time":1761498578739,"pid":427026,"hostname":"ubuntu","timestamp":1761498578739,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"53","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU","scheduleAtServerMs":1761498578926},"msg":"action_received"}
{"level":30,"time":1761498582450,"pid":427026,"hostname":"ubuntu","timestamp":1761498582450,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
{"level":30,"time":1761498582478,"pid":427026,"hostname":"ubuntu","timestamp":1761498582478,"socketId":"LElghM2sTToa0pBlAAAJ","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761496472045_bk9iq61","name":"Pista de Áudio 1"},{"id":"track_1761496473349_gzy9jf5","name":"Pista de Áudio 2"},{"id":"track_1761496506916_h72okks","name":"Pista de Áudio 3"},{"id":"track_1761496507307_4ns0apy","name":"Pista de Áudio 4"},{"id":"track_1761496507683_5ki5kwa","name":"Pista de Áudio 5"},{"id":"track_1761496816341_ty0ecyo","name":"Pista de Áudio 6"}],"clips":[{"id":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","trackId":"track_1761496472045_bk9iq61","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":1,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"1c80af4e-aaa9-4046-8fb2-a6915ebb097f","trackId":"track_1761496506916_h72okks","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":3,"durationInSeconds":1.1185833333333335,"offset":2.833333333333333,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"b9134121-180e-4878-aec2-db4bceb41936","trackId":"track_1761496473349_gzy9jf5","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":2,"durationInSeconds":1.3958333333333333,"offset":1.5000000000000002,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"db97322c-d4a9-47c4-bce5-ce5f59adfd13","trackId":"track_1761496506916_h72okks","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":1,"durationInSeconds":0.6666666666666667,"offset":1.8333333333333333,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","trackId":"track_1761496507683_5ki5kwa","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":0,"durationInSeconds":1.4391875,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666},{"id":"df1366bd-572c-415f-9294-25b05d4b93f4","trackId":"track_1761496816341_ty0ecyo","name":"jungle01.ogg","sourcePath":"src/samples/beats/jungle01.ogg","startTimeInSeconds":1,"durationInSeconds":1.6666666666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":2.793645833333333},{"id":"a781562c-029e-40d1-ae2f-d36266c6e0b9","trackId":"track_1761496816341_ty0ecyo","name":"jungle01.ogg","sourcePath":"src/samples/beats/jungle01.ogg","startTimeInSeconds":3.333333333333333,"durationInSeconds":1.1132500000000003,"offset":1.6666666666666665,"pitch":0,"volume":0.8,"pan":0,"originalDuration":2.793645833333333}]},"__target":"hkHF-OC_b8VFRLgqAAAL","__token":"2","__senderId":"LElghM2sTToa0pBlAAAJ","__senderName":"Alicer-LElg"},"msg":"action_received"}
{"level":30,"time":1761498583460,"pid":427026,"hostname":"ubuntu","timestamp":1761498583460,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"START_AUDIO_PLAYBACK","__token":"2","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF","scheduleAtServerMs":1761498583638},"msg":"action_received"}
{"level":30,"time":1761498584792,"pid":427026,"hostname":"ubuntu","timestamp":1761498584792,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"3","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF","scheduleAtServerMs":1761498584968},"msg":"action_received"}
{"level":30,"time":1761498586370,"pid":427026,"hostname":"ubuntu","timestamp":1761498586370,"socketId":"LElghM2sTToa0pBlAAAJ","action":{"type":"START_AUDIO_PLAYBACK","__token":"3","__senderId":"LElghM2sTToa0pBlAAAJ","__senderName":"Alicer-LElg","scheduleAtServerMs":1761498586554},"msg":"action_received"}
{"level":30,"time":1761498588274,"pid":427026,"hostname":"ubuntu","timestamp":1761498588274,"socketId":"LElghM2sTToa0pBlAAAJ","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"4","__senderId":"LElghM2sTToa0pBlAAAJ","__senderName":"Alicer-LElg","scheduleAtServerMs":1761498588458},"msg":"action_received"}
{"level":30,"time":1761498892387,"pid":427026,"hostname":"ubuntu","timestamp":1761498892387,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":2.1666666666666665},"__token":"4","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
{"level":30,"time":1761498893450,"pid":427026,"hostname":"ubuntu","timestamp":1761498893450,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":2},"__token":"5","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
{"level":30,"time":1761498894193,"pid":427026,"hostname":"ubuntu","timestamp":1761498894193,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":1.8333333333333333},"__token":"6","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
{"level":30,"time":1761498894851,"pid":427026,"hostname":"ubuntu","timestamp":1761498894851,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":1.6666666666666665},"__token":"7","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
{"level":30,"time":1761498895507,"pid":427026,"hostname":"ubuntu","timestamp":1761498895507,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":1.3333333333333333},"__token":"8","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
{"level":30,"time":1761498897545,"pid":427026,"hostname":"ubuntu","timestamp":1761498897545,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"db97322c-d4a9-47c4-bce5-ce5f59adfd13","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":0.8333333333333333},"__token":"9","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
{"level":30,"time":1761498898345,"pid":427026,"hostname":"ubuntu","timestamp":1761498898345,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"db97322c-d4a9-47c4-bce5-ce5f59adfd13","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":0.5},"__token":"10","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
{"level":30,"time":1761498899300,"pid":427026,"hostname":"ubuntu","timestamp":1761498899300,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"db97322c-d4a9-47c4-bce5-ce5f59adfd13","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":0.6666666666666666},"__token":"11","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
{"level":30,"time":1761498900692,"pid":427026,"hostname":"ubuntu","timestamp":1761498900692,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507307_4ns0apy","startTimeInSeconds":0},"__token":"12","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
{"level":30,"time":1761498902076,"pid":427026,"hostname":"ubuntu","timestamp":1761498902076,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":0},"__token":"13","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
{"level":30,"time":1761498903290,"pid":427026,"hostname":"ubuntu","timestamp":1761498903290,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507307_4ns0apy","startTimeInSeconds":0.16666666666666666},"__token":"14","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
{"level":30,"time":1761498904251,"pid":427026,"hostname":"ubuntu","timestamp":1761498904251,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":0},"__token":"15","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
{"level":30,"time":1761498905318,"pid":427026,"hostname":"ubuntu","timestamp":1761498905318,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507307_4ns0apy","startTimeInSeconds":0},"__token":"16","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
{"level":30,"time":1761498906500,"pid":427026,"hostname":"ubuntu","timestamp":1761498906500,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":0},"__token":"17","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
{"level":30,"time":1761498907611,"pid":427026,"hostname":"ubuntu","timestamp":1761498907611,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507307_4ns0apy","startTimeInSeconds":0},"__token":"18","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}

View File

@ -0,0 +1,999 @@
{"level":30,"time":1761499432941,"pid":471169,"hostname":"ubuntu","timestamp":1761499432940,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH"},"msg":"action_received"}
{"level":30,"time":1761499434105,"pid":471169,"hostname":"ubuntu","timestamp":1761499434105,"socketId":"ZHyFGyxP2GZOqadwAAAH","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"ZHyFGyxP2GZOqadwAAAH","__senderName":"Alicer-ZHyF"},"msg":"action_received"}
{"level":30,"time":1761499476676,"pid":471169,"hostname":"ubuntu","timestamp":1761499476676,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761499407995_5maq15z","__token":"2","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH"},"msg":"action_received"}
{"level":30,"time":1761499491643,"pid":471169,"hostname":"ubuntu","timestamp":1761499491643,"socketId":"DkrndohiLep1P-AuAAAJ","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"DkrndohiLep1P-AuAAAJ","__senderName":"Alicer-Dkrn"},"msg":"action_received"}
{"level":30,"time":1761499491670,"pid":471169,"hostname":"ubuntu","timestamp":1761499491670,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761499407995_5maq15z","name":"Pista de Áudio 1"}],"clips":[]},"__target":"DkrndohiLep1P-AuAAAJ","__token":"3","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH"},"msg":"action_received"}
{"level":30,"time":1761499494695,"pid":471169,"hostname":"ubuntu","timestamp":1761499494695,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":8},"__token":"4","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH","scheduleAtServerMs":1761499494880,"__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761499505037,"pid":471169,"hostname":"ubuntu","timestamp":1761499505037,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"5","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH","scheduleAtServerMs":1761499505224,"__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761499511669,"pid":471169,"hostname":"ubuntu","timestamp":1761499511669,"socketId":"DkrndohiLep1P-AuAAAJ","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":8},"__token":"2","__senderId":"DkrndohiLep1P-AuAAAJ","__senderName":"Alicer-Dkrn","scheduleAtServerMs":1761499511857,"__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761499513341,"pid":471169,"hostname":"ubuntu","timestamp":1761499513341,"socketId":"DkrndohiLep1P-AuAAAJ","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"3","__senderId":"DkrndohiLep1P-AuAAAJ","__senderName":"Alicer-Dkrn","scheduleAtServerMs":1761499513529,"__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761499514901,"pid":471169,"hostname":"ubuntu","timestamp":1761499514901,"socketId":"DkrndohiLep1P-AuAAAJ","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":8},"__token":"4","__senderId":"DkrndohiLep1P-AuAAAJ","__senderName":"Alicer-Dkrn","scheduleAtServerMs":1761499515088,"__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761499555336,"pid":471169,"hostname":"ubuntu","timestamp":1761499555336,"socketId":"DkrndohiLep1P-AuAAAJ","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"5","__senderId":"DkrndohiLep1P-AuAAAJ","__senderName":"Alicer-Dkrn","scheduleAtServerMs":1761499555522,"__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761499556871,"pid":471169,"hostname":"ubuntu","timestamp":1761499556871,"socketId":"DkrndohiLep1P-AuAAAJ","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":8},"__token":"6","__senderId":"DkrndohiLep1P-AuAAAJ","__senderName":"Alicer-Dkrn","scheduleAtServerMs":1761499557057,"__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761499578488,"pid":471169,"hostname":"ubuntu","timestamp":1761499578488,"socketId":"DkrndohiLep1P-AuAAAJ","action":{"type":"START_AUDIO_PLAYBACK","seekTime":6.109333333333332,"loopState":{"isLoopActive":false,"loopStartTime":0,"loopEndTime":8},"__token":"11","__senderId":"DkrndohiLep1P-AuAAAJ","__senderName":"Alicer-Dkrn","scheduleAtServerMs":1761499578675,"__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761499580128,"pid":471169,"hostname":"ubuntu","timestamp":1761499580128,"socketId":"DkrndohiLep1P-AuAAAJ","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"12","__senderId":"DkrndohiLep1P-AuAAAJ","__senderName":"Alicer-Dkrn","scheduleAtServerMs":1761499580315,"__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761499583057,"pid":471169,"hostname":"ubuntu","timestamp":1761499583057,"socketId":"DkrndohiLep1P-AuAAAJ","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":false,"loopStartTime":0,"loopEndTime":8},"__token":"13","__senderId":"DkrndohiLep1P-AuAAAJ","__senderName":"Alicer-Dkrn","scheduleAtServerMs":1761499583244,"__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761499584785,"pid":471169,"hostname":"ubuntu","timestamp":1761499584785,"socketId":"DkrndohiLep1P-AuAAAJ","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":false,"__token":"14","__senderId":"DkrndohiLep1P-AuAAAJ","__senderName":"Alicer-Dkrn","scheduleAtServerMs":1761499584971,"__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761499587784,"pid":471169,"hostname":"ubuntu","timestamp":1761499587784,"socketId":"DkrndohiLep1P-AuAAAJ","action":{"type":"START_AUDIO_PLAYBACK","seekTime":1.7093333333333334,"loopState":{"isLoopActive":false,"loopStartTime":0,"loopEndTime":8},"__token":"15","__senderId":"DkrndohiLep1P-AuAAAJ","__senderName":"Alicer-Dkrn","scheduleAtServerMs":1761499587971,"__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761499594169,"pid":471169,"hostname":"ubuntu","timestamp":1761499594169,"socketId":"DkrndohiLep1P-AuAAAJ","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"16","__senderId":"DkrndohiLep1P-AuAAAJ","__senderName":"Alicer-Dkrn","scheduleAtServerMs":1761499594359,"__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761499624912,"pid":471169,"hostname":"ubuntu","timestamp":1761499624912,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/909beat01.ogg","trackId":"track_1761499407995_5maq15z","startTimeInSeconds":7,"clipId":"1a5cae7a-c54d-4d88-ba4c-6b8d5997ca11","name":"909beat01.ogg","__token":"7","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH"},"msg":"action_received"}
{"level":30,"time":1761499626091,"pid":471169,"hostname":"ubuntu","timestamp":1761499626091,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"1a5cae7a-c54d-4d88-ba4c-6b8d5997ca11","props":{"trackId":"track_1761499407995_5maq15z","startTimeInSeconds":4.166666666666666},"__token":"8","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH"},"msg":"action_received"}
{"level":30,"time":1761499627853,"pid":471169,"hostname":"ubuntu","timestamp":1761499627853,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"1a5cae7a-c54d-4d88-ba4c-6b8d5997ca11","props":{"trackId":"track_1761499407995_5maq15z","startTimeInSeconds":0},"__token":"9","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH"},"msg":"action_received"}
{"level":30,"time":1761499634676,"pid":471169,"hostname":"ubuntu","timestamp":1761499634676,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":3.958333333333333},"__token":"10","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH","scheduleAtServerMs":1761499634863,"__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761499640118,"pid":471169,"hostname":"ubuntu","timestamp":1761499640118,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"11","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH","scheduleAtServerMs":1761499640304,"__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761499959963,"pid":471169,"hostname":"ubuntu","timestamp":1761499959963,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"1a5cae7a-c54d-4d88-ba4c-6b8d5997ca11","props":{"trackId":"track_1761499407995_5maq15z","startTimeInSeconds":3.1666666666666665},"__token":"12","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH"},"msg":"action_received"}
{"level":30,"time":1761499961418,"pid":471169,"hostname":"ubuntu","timestamp":1761499961418,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"1a5cae7a-c54d-4d88-ba4c-6b8d5997ca11","props":{"trackId":"track_1761499407995_5maq15z","startTimeInSeconds":4.833333333333333},"__token":"13","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH"},"msg":"action_received"}
{"level":30,"time":1761499962403,"pid":471169,"hostname":"ubuntu","timestamp":1761499962403,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"1a5cae7a-c54d-4d88-ba4c-6b8d5997ca11","props":{"trackId":"track_1761499407995_5maq15z","startTimeInSeconds":2.833333333333333},"__token":"14","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH"},"msg":"action_received"}
{"level":30,"time":1761499964027,"pid":471169,"hostname":"ubuntu","timestamp":1761499964027,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"1a5cae7a-c54d-4d88-ba4c-6b8d5997ca11","props":{"trackId":"track_1761499407995_5maq15z","startTimeInSeconds":1.3333333333333333},"__token":"15","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH"},"msg":"action_received"}
{"level":30,"time":1761499964676,"pid":471169,"hostname":"ubuntu","timestamp":1761499964676,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"1a5cae7a-c54d-4d88-ba4c-6b8d5997ca11","props":{"trackId":"track_1761499407995_5maq15z","startTimeInSeconds":0.6666666666666666},"__token":"16","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH"},"msg":"action_received"}
{"level":30,"time":1761500447040,"pid":471169,"hostname":"ubuntu","timestamp":1761500447040,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg"},"msg":"action_received"}
{"level":30,"time":1761500448216,"pid":471169,"hostname":"ubuntu","timestamp":1761500448216,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_"},"msg":"action_received"}
{"level":30,"time":1761500449290,"pid":471169,"hostname":"ubuntu","timestamp":1761500449290,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761500380591_lfbbzcl","__token":"2","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg"},"msg":"action_received"}
{"level":30,"time":1761500458731,"pid":471169,"hostname":"ubuntu","timestamp":1761500458731,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":8},"__token":"3","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","scheduleAtServerMs":1761500458917,"__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500459306,"pid":471169,"hostname":"ubuntu","timestamp":1761500459306,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"4","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500465826,"pid":471169,"hostname":"ubuntu","timestamp":1761500465826,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":1.791666666666667,"__token":"5","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500468939,"pid":471169,"hostname":"ubuntu","timestamp":1761500468939,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":4.375,"__token":"6","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500470659,"pid":471169,"hostname":"ubuntu","timestamp":1761500470659,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":1.5416666666666665,"__token":"7","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500478546,"pid":471169,"hostname":"ubuntu","timestamp":1761500478546,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":12.416666666666666,"__token":"2","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500504933,"pid":471169,"hostname":"ubuntu","timestamp":1761500504933,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"8","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500506422,"pid":471169,"hostname":"ubuntu","timestamp":1761500506422,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":12.416666666666666},"__token":"9","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","scheduleAtServerMs":1761500506607,"__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500508588,"pid":471169,"hostname":"ubuntu","timestamp":1761500508588,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"10","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500509813,"pid":471169,"hostname":"ubuntu","timestamp":1761500509813,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":8.0625,"__token":"11","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500513597,"pid":471169,"hostname":"ubuntu","timestamp":1761500513597,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":9.1875,"__token":"12","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500513669,"pid":471169,"hostname":"ubuntu","timestamp":1761500513669,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":9.229166666666666,"__token":"13","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500513701,"pid":471169,"hostname":"ubuntu","timestamp":1761500513701,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":9.270833333333334,"__token":"14","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500513716,"pid":471169,"hostname":"ubuntu","timestamp":1761500513716,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":9.354166666666666,"__token":"15","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500513733,"pid":471169,"hostname":"ubuntu","timestamp":1761500513733,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":9.354166666666666,"__token":"16","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500513751,"pid":471169,"hostname":"ubuntu","timestamp":1761500513751,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":9.395833333333334,"__token":"17","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500513785,"pid":471169,"hostname":"ubuntu","timestamp":1761500513785,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":9.4375,"__token":"18","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500513801,"pid":471169,"hostname":"ubuntu","timestamp":1761500513801,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":9.5625,"__token":"19","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500513816,"pid":471169,"hostname":"ubuntu","timestamp":1761500513816,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":9.645833333333334,"__token":"20","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500513833,"pid":471169,"hostname":"ubuntu","timestamp":1761500513833,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":9.6875,"__token":"21","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500513918,"pid":471169,"hostname":"ubuntu","timestamp":1761500513918,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":9.729166666666666,"__token":"22","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500514773,"pid":471169,"hostname":"ubuntu","timestamp":1761500514773,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":10.354166666666666,"__token":"23","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500515645,"pid":471169,"hostname":"ubuntu","timestamp":1761500515645,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":5.104166666666667,"__token":"24","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500516437,"pid":471169,"hostname":"ubuntu","timestamp":1761500516437,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":4.020833333333333,"__token":"25","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500516885,"pid":471169,"hostname":"ubuntu","timestamp":1761500516885,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":2.3541666666666665,"__token":"26","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500519902,"pid":471169,"hostname":"ubuntu","timestamp":1761500519902,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":12.416666666666666,"__token":"27","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500522541,"pid":471169,"hostname":"ubuntu","timestamp":1761500522541,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":12.375,"__token":"28","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500524549,"pid":471169,"hostname":"ubuntu","timestamp":1761500524549,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":9.75,"__token":"29","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500542406,"pid":471169,"hostname":"ubuntu","timestamp":1761500542406,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":14.583333333333332,"__token":"30","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500549702,"pid":471169,"hostname":"ubuntu","timestamp":1761500549701,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8.708333333333332,"__token":"3","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500658399,"pid":471169,"hostname":"ubuntu","timestamp":1761500658399,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":8.895833333333334,"__token":"31","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500709869,"pid":471169,"hostname":"ubuntu","timestamp":1761500709869,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"34","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500711182,"pid":471169,"hostname":"ubuntu","timestamp":1761500711182,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"START_AUDIO_PLAYBACK","seekTime":8.895833333333334,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":4.208333333333331},"__token":"35","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","scheduleAtServerMs":1761500711366,"__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500713421,"pid":471169,"hostname":"ubuntu","timestamp":1761500713421,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"36","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500715206,"pid":471169,"hostname":"ubuntu","timestamp":1761500715206,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"37","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500717920,"pid":471169,"hostname":"ubuntu","timestamp":1761500717920,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":4.208333333333331},"__token":"38","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","scheduleAtServerMs":1761500718105,"__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500719928,"pid":471169,"hostname":"ubuntu","timestamp":1761500719928,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"39","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500720766,"pid":471169,"hostname":"ubuntu","timestamp":1761500720766,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"40","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500724239,"pid":471169,"hostname":"ubuntu","timestamp":1761500724239,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":4.208333333333331},"__token":"41","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","scheduleAtServerMs":1761500724423,"__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500725278,"pid":471169,"hostname":"ubuntu","timestamp":1761500725278,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"42","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500791468,"pid":471169,"hostname":"ubuntu","timestamp":1761500791468,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":4.354166666666667,"__token":"4","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500791468,"pid":471169,"hostname":"ubuntu","timestamp":1761500791468,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":4.354166666666667,"__token":"5","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500792505,"pid":471169,"hostname":"ubuntu","timestamp":1761500792505,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":5.395833333333333,"__token":"6","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500793161,"pid":471169,"hostname":"ubuntu","timestamp":1761500793161,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":6.8125,"__token":"7","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500793740,"pid":471169,"hostname":"ubuntu","timestamp":1761500793740,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":3.4375,"__token":"8","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500794642,"pid":471169,"hostname":"ubuntu","timestamp":1761500794642,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":2.3125,"__token":"9","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500795146,"pid":471169,"hostname":"ubuntu","timestamp":1761500795146,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":4.895833333333333,"__token":"10","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500795508,"pid":471169,"hostname":"ubuntu","timestamp":1761500795508,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":6.854166666666667,"__token":"11","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500795568,"pid":471169,"hostname":"ubuntu","timestamp":1761500795568,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":6.895833333333333,"__token":"12","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500795610,"pid":471169,"hostname":"ubuntu","timestamp":1761500795610,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":6.979166666666667,"__token":"13","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500795626,"pid":471169,"hostname":"ubuntu","timestamp":1761500795626,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":7.3125,"__token":"14","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500795641,"pid":471169,"hostname":"ubuntu","timestamp":1761500795641,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":7.4375,"__token":"15","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500795659,"pid":471169,"hostname":"ubuntu","timestamp":1761500795659,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":7.645833333333333,"__token":"16","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500795676,"pid":471169,"hostname":"ubuntu","timestamp":1761500795676,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":7.8125,"__token":"17","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500795762,"pid":471169,"hostname":"ubuntu","timestamp":1761500795762,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":8.0625,"__token":"18","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500795762,"pid":471169,"hostname":"ubuntu","timestamp":1761500795762,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":8.229166666666666,"__token":"19","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500795766,"pid":471169,"hostname":"ubuntu","timestamp":1761500795766,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":8.395833333333334,"__token":"20","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500795782,"pid":471169,"hostname":"ubuntu","timestamp":1761500795782,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":8.5625,"__token":"21","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500795782,"pid":471169,"hostname":"ubuntu","timestamp":1761500795782,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":8.6875,"__token":"22","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500795827,"pid":471169,"hostname":"ubuntu","timestamp":1761500795827,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":8.729166666666666,"__token":"23","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500796017,"pid":471169,"hostname":"ubuntu","timestamp":1761500796017,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":8.770833333333334,"__token":"24","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500796032,"pid":471169,"hostname":"ubuntu","timestamp":1761500796032,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":8.8125,"__token":"25","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500796091,"pid":471169,"hostname":"ubuntu","timestamp":1761500796091,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":8.854166666666666,"__token":"26","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500796108,"pid":471169,"hostname":"ubuntu","timestamp":1761500796108,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":8.895833333333334,"__token":"27","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500796125,"pid":471169,"hostname":"ubuntu","timestamp":1761500796125,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":8.9375,"__token":"28","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500796141,"pid":471169,"hostname":"ubuntu","timestamp":1761500796141,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":9.0625,"__token":"29","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500796158,"pid":471169,"hostname":"ubuntu","timestamp":1761500796158,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":9.229166666666666,"__token":"30","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500796175,"pid":471169,"hostname":"ubuntu","timestamp":1761500796175,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":9.354166666666666,"__token":"31","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500796192,"pid":471169,"hostname":"ubuntu","timestamp":1761500796192,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":9.520833333333334,"__token":"32","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500796208,"pid":471169,"hostname":"ubuntu","timestamp":1761500796208,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":9.770833333333334,"__token":"33","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500796225,"pid":471169,"hostname":"ubuntu","timestamp":1761500796225,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":9.9375,"__token":"34","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500796241,"pid":471169,"hostname":"ubuntu","timestamp":1761500796241,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":10.020833333333334,"__token":"35","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500796263,"pid":471169,"hostname":"ubuntu","timestamp":1761500796263,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":10.104166666666666,"__token":"36","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500796275,"pid":471169,"hostname":"ubuntu","timestamp":1761500796275,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":10.1875,"__token":"37","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500796332,"pid":471169,"hostname":"ubuntu","timestamp":1761500796332,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":10.229166666666666,"__token":"38","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500796905,"pid":471169,"hostname":"ubuntu","timestamp":1761500796905,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":5.729166666666667,"__token":"39","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500797737,"pid":471169,"hostname":"ubuntu","timestamp":1761500797737,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":5.479166666666667,"__token":"40","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500798289,"pid":471169,"hostname":"ubuntu","timestamp":1761500798289,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":4.020833333333333,"__token":"41","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500798794,"pid":471169,"hostname":"ubuntu","timestamp":1761500798794,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":1.6875,"__token":"42","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500808522,"pid":471169,"hostname":"ubuntu","timestamp":1761500808522,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":7.0625,"__token":"43","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500810323,"pid":471169,"hostname":"ubuntu","timestamp":1761500810323,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761500741617_rpz0rna","__token":"44","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg"},"msg":"action_received"}
{"level":30,"time":1761500811091,"pid":471169,"hostname":"ubuntu","timestamp":1761500811091,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761500742384_ifk23ix","__token":"45","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg"},"msg":"action_received"}
{"level":30,"time":1761500811882,"pid":471169,"hostname":"ubuntu","timestamp":1761500811882,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761500743176_q3xiqem","__token":"46","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg"},"msg":"action_received"}
{"level":30,"time":1761500813188,"pid":471169,"hostname":"ubuntu","timestamp":1761500813188,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":9.354166666666666,"__token":"47","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500814563,"pid":471169,"hostname":"ubuntu","timestamp":1761500814563,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":6.270833333333333,"__token":"48","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500815243,"pid":471169,"hostname":"ubuntu","timestamp":1761500815243,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":3.8958333333333335,"__token":"49","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500816147,"pid":471169,"hostname":"ubuntu","timestamp":1761500816146,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":8.770833333333334,"__token":"50","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500816564,"pid":471169,"hostname":"ubuntu","timestamp":1761500816564,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":10.104166666666666,"__token":"51","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500816570,"pid":471169,"hostname":"ubuntu","timestamp":1761500816570,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":10.104166666666666,"__token":"52","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500816996,"pid":471169,"hostname":"ubuntu","timestamp":1761500816996,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":11.9375,"__token":"53","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500817485,"pid":471169,"hostname":"ubuntu","timestamp":1761500817485,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":10.395833333333334,"__token":"54","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500817963,"pid":471169,"hostname":"ubuntu","timestamp":1761500817963,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":7.395833333333333,"__token":"55","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500818420,"pid":471169,"hostname":"ubuntu","timestamp":1761500818420,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":4.395833333333333,"__token":"56","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500818995,"pid":471169,"hostname":"ubuntu","timestamp":1761500818995,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":2.2708333333333335,"__token":"57","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500820451,"pid":471169,"hostname":"ubuntu","timestamp":1761500820451,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":6.749999999999998,"__token":"58","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500821826,"pid":471169,"hostname":"ubuntu","timestamp":1761500821826,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8.541666666666664,"__token":"59","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500822563,"pid":471169,"hostname":"ubuntu","timestamp":1761500822563,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":9.666666666666664,"__token":"60","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500823283,"pid":471169,"hostname":"ubuntu","timestamp":1761500823283,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":10.374999999999998,"__token":"61","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500825502,"pid":471169,"hostname":"ubuntu","timestamp":1761500825501,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":11.166666666666664,"__token":"62","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500832427,"pid":471169,"hostname":"ubuntu","timestamp":1761500832427,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":13.291666666666664,"__token":"63","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500838995,"pid":471169,"hostname":"ubuntu","timestamp":1761500838995,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":10.666666666666664,"__token":"43","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500907017,"pid":471169,"hostname":"ubuntu","timestamp":1761500907017,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A"},"msg":"action_received"}
{"level":30,"time":1761500907042,"pid":471169,"hostname":"ubuntu","timestamp":1761500907042,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[]},"__target":"UD9ArAYOA2pDTalvAAAP","__token":"44","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_"},"msg":"action_received"}
{"level":30,"time":1761500908193,"pid":471169,"hostname":"ubuntu","timestamp":1761500908193,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":11.0625,"__token":"45","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500908194,"pid":471169,"hostname":"ubuntu","timestamp":1761500908194,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":11.0625,"__token":"46","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500911019,"pid":471169,"hostname":"ubuntu","timestamp":1761500911019,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek"},"msg":"action_received"}
{"level":30,"time":1761500911045,"pid":471169,"hostname":"ubuntu","timestamp":1761500911045,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[]},"__target":"_nekebkJ_WyceqQTAAAR","__token":"2","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A"},"msg":"action_received"}
{"level":30,"time":1761500919376,"pid":471169,"hostname":"ubuntu","timestamp":1761500919376,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/909beat01.ogg","trackId":"track_1761500380591_lfbbzcl","startTimeInSeconds":0.6666666666666666,"clipId":"cc0ad9d6-4ad5-4f35-8649-479776243df5","name":"909beat01.ogg","__token":"3","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A"},"msg":"action_received"}
{"level":30,"time":1761500921223,"pid":471169,"hostname":"ubuntu","timestamp":1761500921223,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"cc0ad9d6-4ad5-4f35-8649-479776243df5","props":{"trackId":"track_1761500741617_rpz0rna","startTimeInSeconds":0.3333333333333333},"__token":"4","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A"},"msg":"action_received"}
{"level":30,"time":1761500922256,"pid":471169,"hostname":"ubuntu","timestamp":1761500922256,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"cc0ad9d6-4ad5-4f35-8649-479776243df5","props":{"trackId":"track_1761500742384_ifk23ix","startTimeInSeconds":0.16666666666666666},"__token":"5","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A"},"msg":"action_received"}
{"level":30,"time":1761500926408,"pid":471169,"hostname":"ubuntu","timestamp":1761500926408,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"6","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500927496,"pid":471169,"hostname":"ubuntu","timestamp":1761500927496,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":8,"__token":"7","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500928176,"pid":471169,"hostname":"ubuntu","timestamp":1761500928176,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"8","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500955114,"pid":471169,"hostname":"ubuntu","timestamp":1761500955114,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.3385416666666667,"__token":"2","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500955115,"pid":471169,"hostname":"ubuntu","timestamp":1761500955115,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.3385416666666667,"__token":"3","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500955200,"pid":471169,"hostname":"ubuntu","timestamp":1761500955200,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.3489583333333333,"__token":"4","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500955244,"pid":471169,"hostname":"ubuntu","timestamp":1761500955244,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.359375,"__token":"5","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500955259,"pid":471169,"hostname":"ubuntu","timestamp":1761500955259,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.3802083333333333,"__token":"6","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500955277,"pid":471169,"hostname":"ubuntu","timestamp":1761500955277,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.3802083333333333,"__token":"7","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500955730,"pid":471169,"hostname":"ubuntu","timestamp":1761500955730,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.546875,"__token":"8","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500955752,"pid":471169,"hostname":"ubuntu","timestamp":1761500955752,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.5677083333333334,"__token":"9","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500955776,"pid":471169,"hostname":"ubuntu","timestamp":1761500955776,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.578125,"__token":"10","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500955793,"pid":471169,"hostname":"ubuntu","timestamp":1761500955793,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.609375,"__token":"11","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500955812,"pid":471169,"hostname":"ubuntu","timestamp":1761500955812,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.640625,"__token":"12","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500955827,"pid":471169,"hostname":"ubuntu","timestamp":1761500955827,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.6510416666666666,"__token":"13","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500955847,"pid":471169,"hostname":"ubuntu","timestamp":1761500955847,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.6822916666666666,"__token":"14","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500955864,"pid":471169,"hostname":"ubuntu","timestamp":1761500955864,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.6927083333333334,"__token":"15","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500955881,"pid":471169,"hostname":"ubuntu","timestamp":1761500955881,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.7239583333333334,"__token":"16","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500955952,"pid":471169,"hostname":"ubuntu","timestamp":1761500955952,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.7447916666666666,"__token":"17","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500955973,"pid":471169,"hostname":"ubuntu","timestamp":1761500955973,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.7552083333333334,"__token":"18","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500955973,"pid":471169,"hostname":"ubuntu","timestamp":1761500955973,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.765625,"__token":"19","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500956226,"pid":471169,"hostname":"ubuntu","timestamp":1761500956226,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.984375,"__token":"20","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500956243,"pid":471169,"hostname":"ubuntu","timestamp":1761500956243,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.9947916666666666,"__token":"21","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500956277,"pid":471169,"hostname":"ubuntu","timestamp":1761500956277,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.0052083333333333,"__token":"22","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500956296,"pid":471169,"hostname":"ubuntu","timestamp":1761500956296,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.015625,"__token":"23","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500956312,"pid":471169,"hostname":"ubuntu","timestamp":1761500956312,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.0260416666666667,"__token":"24","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500956332,"pid":471169,"hostname":"ubuntu","timestamp":1761500956332,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.046875,"__token":"25","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500956344,"pid":471169,"hostname":"ubuntu","timestamp":1761500956344,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.0677083333333333,"__token":"26","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500956364,"pid":471169,"hostname":"ubuntu","timestamp":1761500956364,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.109375,"__token":"27","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500956377,"pid":471169,"hostname":"ubuntu","timestamp":1761500956377,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.1302083333333333,"__token":"28","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500956397,"pid":471169,"hostname":"ubuntu","timestamp":1761500956397,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.1614583333333333,"__token":"29","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500956411,"pid":471169,"hostname":"ubuntu","timestamp":1761500956411,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.171875,"__token":"30","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500956430,"pid":471169,"hostname":"ubuntu","timestamp":1761500956430,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.1927083333333333,"__token":"31","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500956444,"pid":471169,"hostname":"ubuntu","timestamp":1761500956444,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.203125,"__token":"32","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500956465,"pid":471169,"hostname":"ubuntu","timestamp":1761500956465,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.2239583333333333,"__token":"33","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500956480,"pid":471169,"hostname":"ubuntu","timestamp":1761500956480,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.234375,"__token":"34","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500956698,"pid":471169,"hostname":"ubuntu","timestamp":1761500956698,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.546875,"__token":"35","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500956710,"pid":471169,"hostname":"ubuntu","timestamp":1761500956710,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.5677083333333333,"__token":"36","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500956726,"pid":471169,"hostname":"ubuntu","timestamp":1761500956726,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.578125,"__token":"37","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500956746,"pid":471169,"hostname":"ubuntu","timestamp":1761500956746,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.5989583333333333,"__token":"38","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500956780,"pid":471169,"hostname":"ubuntu","timestamp":1761500956780,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.609375,"__token":"39","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500956793,"pid":471169,"hostname":"ubuntu","timestamp":1761500956793,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.6197916666666667,"__token":"40","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500956809,"pid":471169,"hostname":"ubuntu","timestamp":1761500956809,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.640625,"__token":"41","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500956827,"pid":471169,"hostname":"ubuntu","timestamp":1761500956827,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.6510416666666667,"__token":"42","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500960434,"pid":471169,"hostname":"ubuntu","timestamp":1761500960434,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":10.083333333333334,"__token":"43","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500961168,"pid":471169,"hostname":"ubuntu","timestamp":1761500961168,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":11.458333333333334,"__token":"44","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500966145,"pid":471169,"hostname":"ubuntu","timestamp":1761500966145,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"START_AUDIO_PLAYBACK","seekTime":1.6510416666666667,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":11.458333333333334},"__token":"45","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","scheduleAtServerMs":1761500966333,"__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500972719,"pid":471169,"hostname":"ubuntu","timestamp":1761500972719,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":4.041666666666667,"__token":"46","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761500986882,"pid":471169,"hostname":"ubuntu","timestamp":1761500986882,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"47","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501038132,"pid":471169,"hostname":"ubuntu","timestamp":1761501038132,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.3958333333333335,"__token":"48","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501038260,"pid":471169,"hostname":"ubuntu","timestamp":1761501038260,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.3958333333333335,"__token":"49","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501038275,"pid":471169,"hostname":"ubuntu","timestamp":1761501038275,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.4375,"__token":"50","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501038292,"pid":471169,"hostname":"ubuntu","timestamp":1761501038292,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.6458333333333335,"__token":"51","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501038308,"pid":471169,"hostname":"ubuntu","timestamp":1761501038308,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.8541666666666665,"__token":"52","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501038325,"pid":471169,"hostname":"ubuntu","timestamp":1761501038325,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.0208333333333335,"__token":"53","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501038342,"pid":471169,"hostname":"ubuntu","timestamp":1761501038342,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.0625,"__token":"54","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501038358,"pid":471169,"hostname":"ubuntu","timestamp":1761501038358,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.1458333333333335,"__token":"55","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501038375,"pid":471169,"hostname":"ubuntu","timestamp":1761501038375,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.2708333333333335,"__token":"56","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501038458,"pid":471169,"hostname":"ubuntu","timestamp":1761501038458,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.3125,"__token":"57","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501038475,"pid":471169,"hostname":"ubuntu","timestamp":1761501038475,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.3125,"__token":"58","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501038492,"pid":471169,"hostname":"ubuntu","timestamp":1761501038492,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.3958333333333335,"__token":"59","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501038636,"pid":471169,"hostname":"ubuntu","timestamp":1761501038636,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.4375,"__token":"60","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501038693,"pid":471169,"hostname":"ubuntu","timestamp":1761501038693,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.5208333333333335,"__token":"61","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039020,"pid":471169,"hostname":"ubuntu","timestamp":1761501039020,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.5208333333333335,"__token":"62","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039036,"pid":471169,"hostname":"ubuntu","timestamp":1761501039036,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.4375,"__token":"63","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039044,"pid":471169,"hostname":"ubuntu","timestamp":1761501039044,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.3958333333333335,"__token":"64","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039060,"pid":471169,"hostname":"ubuntu","timestamp":1761501039060,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.3541666666666665,"__token":"65","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039076,"pid":471169,"hostname":"ubuntu","timestamp":1761501039076,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.3125,"__token":"66","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039092,"pid":471169,"hostname":"ubuntu","timestamp":1761501039092,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.2708333333333335,"__token":"67","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039113,"pid":471169,"hostname":"ubuntu","timestamp":1761501039113,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.0625,"__token":"68","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039125,"pid":471169,"hostname":"ubuntu","timestamp":1761501039125,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.9375,"__token":"69","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039142,"pid":471169,"hostname":"ubuntu","timestamp":1761501039142,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.7708333333333335,"__token":"70","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039158,"pid":471169,"hostname":"ubuntu","timestamp":1761501039158,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.6458333333333335,"__token":"71","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039175,"pid":471169,"hostname":"ubuntu","timestamp":1761501039175,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.4791666666666665,"__token":"72","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039191,"pid":471169,"hostname":"ubuntu","timestamp":1761501039191,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.2291666666666665,"__token":"73","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039208,"pid":471169,"hostname":"ubuntu","timestamp":1761501039208,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.1041666666666665,"__token":"74","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039228,"pid":471169,"hostname":"ubuntu","timestamp":1761501039228,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.9375,"__token":"75","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039242,"pid":471169,"hostname":"ubuntu","timestamp":1761501039242,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.8125,"__token":"76","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039260,"pid":471169,"hostname":"ubuntu","timestamp":1761501039260,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.7291666666666667,"__token":"77","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039275,"pid":471169,"hostname":"ubuntu","timestamp":1761501039275,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.6875,"__token":"78","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039295,"pid":471169,"hostname":"ubuntu","timestamp":1761501039295,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.6041666666666667,"__token":"79","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039309,"pid":471169,"hostname":"ubuntu","timestamp":1761501039309,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.5208333333333333,"__token":"80","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039327,"pid":471169,"hostname":"ubuntu","timestamp":1761501039327,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.4791666666666667,"__token":"81","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039342,"pid":471169,"hostname":"ubuntu","timestamp":1761501039342,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.4375,"__token":"82","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039358,"pid":471169,"hostname":"ubuntu","timestamp":1761501039358,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.3541666666666667,"__token":"83","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039375,"pid":471169,"hostname":"ubuntu","timestamp":1761501039375,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.3125,"__token":"84","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039395,"pid":471169,"hostname":"ubuntu","timestamp":1761501039395,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.2708333333333333,"__token":"85","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039408,"pid":471169,"hostname":"ubuntu","timestamp":1761501039408,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.2291666666666667,"__token":"86","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039460,"pid":471169,"hostname":"ubuntu","timestamp":1761501039460,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.1875,"__token":"87","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039636,"pid":471169,"hostname":"ubuntu","timestamp":1761501039636,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.2291666666666667,"__token":"88","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039643,"pid":471169,"hostname":"ubuntu","timestamp":1761501039643,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.3125,"__token":"89","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039661,"pid":471169,"hostname":"ubuntu","timestamp":1761501039661,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.3541666666666667,"__token":"90","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039692,"pid":471169,"hostname":"ubuntu","timestamp":1761501039692,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.4375,"__token":"91","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039900,"pid":471169,"hostname":"ubuntu","timestamp":1761501039900,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.4791666666666667,"__token":"92","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039958,"pid":471169,"hostname":"ubuntu","timestamp":1761501039958,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.5625,"__token":"93","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501039980,"pid":471169,"hostname":"ubuntu","timestamp":1761501039980,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.5625,"__token":"94","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501040009,"pid":471169,"hostname":"ubuntu","timestamp":1761501040008,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.6041666666666667,"__token":"95","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501040025,"pid":471169,"hostname":"ubuntu","timestamp":1761501040025,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.6458333333333333,"__token":"96","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501040041,"pid":471169,"hostname":"ubuntu","timestamp":1761501040041,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.6875,"__token":"97","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501040724,"pid":471169,"hostname":"ubuntu","timestamp":1761501040724,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.6875,"__token":"98","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041068,"pid":471169,"hostname":"ubuntu","timestamp":1761501041068,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.7291666666666667,"__token":"99","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041084,"pid":471169,"hostname":"ubuntu","timestamp":1761501041084,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.7708333333333333,"__token":"100","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041108,"pid":471169,"hostname":"ubuntu","timestamp":1761501041108,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.8125,"__token":"101","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041125,"pid":471169,"hostname":"ubuntu","timestamp":1761501041125,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.9375,"__token":"102","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041141,"pid":471169,"hostname":"ubuntu","timestamp":1761501041141,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.0625,"__token":"103","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041158,"pid":471169,"hostname":"ubuntu","timestamp":1761501041158,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.1458333333333335,"__token":"104","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041175,"pid":471169,"hostname":"ubuntu","timestamp":1761501041175,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.1875,"__token":"105","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041191,"pid":471169,"hostname":"ubuntu","timestamp":1761501041191,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.2708333333333335,"__token":"106","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041209,"pid":471169,"hostname":"ubuntu","timestamp":1761501041209,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.3541666666666665,"__token":"107","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041226,"pid":471169,"hostname":"ubuntu","timestamp":1761501041226,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.4791666666666665,"__token":"108","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041241,"pid":471169,"hostname":"ubuntu","timestamp":1761501041241,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.5208333333333335,"__token":"109","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041291,"pid":471169,"hostname":"ubuntu","timestamp":1761501041291,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.5625,"__token":"110","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041500,"pid":471169,"hostname":"ubuntu","timestamp":1761501041500,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.5208333333333335,"__token":"111","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041508,"pid":471169,"hostname":"ubuntu","timestamp":1761501041508,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.4375,"__token":"112","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041524,"pid":471169,"hostname":"ubuntu","timestamp":1761501041524,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.3541666666666665,"__token":"113","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041547,"pid":471169,"hostname":"ubuntu","timestamp":1761501041547,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.0625,"__token":"114","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041582,"pid":471169,"hostname":"ubuntu","timestamp":1761501041582,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.8541666666666667,"__token":"115","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041599,"pid":471169,"hostname":"ubuntu","timestamp":1761501041599,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.5625,"__token":"116","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041652,"pid":471169,"hostname":"ubuntu","timestamp":1761501041652,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.3541666666666667,"__token":"117","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041652,"pid":471169,"hostname":"ubuntu","timestamp":1761501041652,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.1041666666666667,"__token":"118","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041652,"pid":471169,"hostname":"ubuntu","timestamp":1761501041652,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.9791666666666666,"__token":"119","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041652,"pid":471169,"hostname":"ubuntu","timestamp":1761501041652,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.8541666666666666,"__token":"120","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041685,"pid":471169,"hostname":"ubuntu","timestamp":1761501041685,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.7708333333333334,"__token":"121","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041686,"pid":471169,"hostname":"ubuntu","timestamp":1761501041686,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.7291666666666666,"__token":"122","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041690,"pid":471169,"hostname":"ubuntu","timestamp":1761501041690,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.6041666666666666,"__token":"123","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041708,"pid":471169,"hostname":"ubuntu","timestamp":1761501041708,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.4791666666666667,"__token":"124","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041725,"pid":471169,"hostname":"ubuntu","timestamp":1761501041725,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.2708333333333333,"__token":"125","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041741,"pid":471169,"hostname":"ubuntu","timestamp":1761501041741,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.10416666666666667,"__token":"126","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041758,"pid":471169,"hostname":"ubuntu","timestamp":1761501041758,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.020833333333333332,"__token":"127","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041775,"pid":471169,"hostname":"ubuntu","timestamp":1761501041775,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":-0.10416666666666667,"__token":"128","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041791,"pid":471169,"hostname":"ubuntu","timestamp":1761501041791,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":-0.3125,"__token":"129","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041807,"pid":471169,"hostname":"ubuntu","timestamp":1761501041807,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":-0.4375,"__token":"130","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041825,"pid":471169,"hostname":"ubuntu","timestamp":1761501041825,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":-0.5208333333333334,"__token":"131","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041841,"pid":471169,"hostname":"ubuntu","timestamp":1761501041841,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":-0.5625,"__token":"132","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041858,"pid":471169,"hostname":"ubuntu","timestamp":1761501041858,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":-0.6041666666666666,"__token":"133","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041907,"pid":471169,"hostname":"ubuntu","timestamp":1761501041907,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":-0.6458333333333334,"__token":"134","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501041925,"pid":471169,"hostname":"ubuntu","timestamp":1761501041925,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":-0.6875,"__token":"135","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501042041,"pid":471169,"hostname":"ubuntu","timestamp":1761501042041,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":-0.3958333333333333,"__token":"136","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501042057,"pid":471169,"hostname":"ubuntu","timestamp":1761501042057,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":-0.10416666666666667,"__token":"137","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501042076,"pid":471169,"hostname":"ubuntu","timestamp":1761501042076,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.10416666666666667,"__token":"138","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501042091,"pid":471169,"hostname":"ubuntu","timestamp":1761501042091,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.2708333333333333,"__token":"139","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501042108,"pid":471169,"hostname":"ubuntu","timestamp":1761501042108,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.4375,"__token":"140","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501042124,"pid":471169,"hostname":"ubuntu","timestamp":1761501042124,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.6458333333333334,"__token":"141","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501042141,"pid":471169,"hostname":"ubuntu","timestamp":1761501042141,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.8125,"__token":"142","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501042158,"pid":471169,"hostname":"ubuntu","timestamp":1761501042158,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.0208333333333333,"__token":"143","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501042175,"pid":471169,"hostname":"ubuntu","timestamp":1761501042175,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.2291666666666667,"__token":"144","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501042191,"pid":471169,"hostname":"ubuntu","timestamp":1761501042191,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.3958333333333333,"__token":"145","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501042208,"pid":471169,"hostname":"ubuntu","timestamp":1761501042208,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.4375,"__token":"146","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501042225,"pid":471169,"hostname":"ubuntu","timestamp":1761501042225,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.5208333333333333,"__token":"147","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501042241,"pid":471169,"hostname":"ubuntu","timestamp":1761501042241,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.5625,"__token":"148","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501042258,"pid":471169,"hostname":"ubuntu","timestamp":1761501042258,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.6458333333333333,"__token":"149","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501042291,"pid":471169,"hostname":"ubuntu","timestamp":1761501042291,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.7708333333333333,"__token":"150","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501042307,"pid":471169,"hostname":"ubuntu","timestamp":1761501042307,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.8541666666666667,"__token":"151","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501042325,"pid":471169,"hostname":"ubuntu","timestamp":1761501042325,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.0625,"__token":"152","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501042341,"pid":471169,"hostname":"ubuntu","timestamp":1761501042341,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.1875,"__token":"153","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501042358,"pid":471169,"hostname":"ubuntu","timestamp":1761501042358,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.2291666666666665,"__token":"154","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501042375,"pid":471169,"hostname":"ubuntu","timestamp":1761501042375,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.3541666666666665,"__token":"155","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501042393,"pid":471169,"hostname":"ubuntu","timestamp":1761501042393,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.3958333333333335,"__token":"156","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501042408,"pid":471169,"hostname":"ubuntu","timestamp":1761501042408,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.4375,"__token":"157","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501042426,"pid":471169,"hostname":"ubuntu","timestamp":1761501042426,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.4791666666666665,"__token":"158","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501042457,"pid":471169,"hostname":"ubuntu","timestamp":1761501042457,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.5625,"__token":"159","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501042475,"pid":471169,"hostname":"ubuntu","timestamp":1761501042475,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.6041666666666665,"__token":"160","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501042491,"pid":471169,"hostname":"ubuntu","timestamp":1761501042491,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.7291666666666665,"__token":"161","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501044372,"pid":471169,"hostname":"ubuntu","timestamp":1761501044372,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":2.125,"__token":"162","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501045461,"pid":471169,"hostname":"ubuntu","timestamp":1761501045461,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":3.791666666666667,"__token":"163","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501047037,"pid":471169,"hostname":"ubuntu","timestamp":1761501047037,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":3.791666666666667,"__token":"164","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501047524,"pid":471169,"hostname":"ubuntu","timestamp":1761501047524,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":3.791666666666667,"__token":"165","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501047989,"pid":471169,"hostname":"ubuntu","timestamp":1761501047989,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":3.791666666666667,"__token":"166","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501048364,"pid":471169,"hostname":"ubuntu","timestamp":1761501048364,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":3.791666666666667,"__token":"167","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501049589,"pid":471169,"hostname":"ubuntu","timestamp":1761501049589,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"START_AUDIO_PLAYBACK","seekTime":2.7291666666666665,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":3.791666666666667},"__token":"168","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","scheduleAtServerMs":1761501049766,"__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501054406,"pid":471169,"hostname":"ubuntu","timestamp":1761501054406,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"169","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501106392,"pid":471169,"hostname":"ubuntu","timestamp":1761501106392,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"cc0ad9d6-4ad5-4f35-8649-479776243df5","props":{"trackId":"track_1761500741617_rpz0rna","startTimeInSeconds":0.3333333333333333},"__token":"170","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek"},"msg":"action_received"}
{"level":30,"time":1761501107695,"pid":471169,"hostname":"ubuntu","timestamp":1761501107695,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"cc0ad9d6-4ad5-4f35-8649-479776243df5","props":{"trackId":"track_1761500380591_lfbbzcl","startTimeInSeconds":3.5},"__token":"171","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek"},"msg":"action_received"}
{"level":30,"time":1761501108608,"pid":471169,"hostname":"ubuntu","timestamp":1761501108608,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"cc0ad9d6-4ad5-4f35-8649-479776243df5","props":{"trackId":"track_1761500380591_lfbbzcl","startTimeInSeconds":2.333333333333333},"__token":"172","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek"},"msg":"action_received"}
{"level":30,"time":1761501110159,"pid":471169,"hostname":"ubuntu","timestamp":1761501110159,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"173","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501110911,"pid":471169,"hostname":"ubuntu","timestamp":1761501110911,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":3.791666666666667},"__token":"174","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","scheduleAtServerMs":1761501111099,"__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501112503,"pid":471169,"hostname":"ubuntu","timestamp":1761501112503,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":false,"__token":"175","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501113039,"pid":471169,"hostname":"ubuntu","timestamp":1761501113039,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"START_AUDIO_PLAYBACK","seekTime":1.410666666666657,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":3.791666666666667},"__token":"176","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","scheduleAtServerMs":1761501113226,"__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501113745,"pid":471169,"hostname":"ubuntu","timestamp":1761501113745,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":false,"__token":"177","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501125082,"pid":471169,"hostname":"ubuntu","timestamp":1761501125082,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":3.791666666666667,"__token":"9","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501125697,"pid":471169,"hostname":"ubuntu","timestamp":1761501125697,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":3.791666666666667,"__token":"10","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501127306,"pid":471169,"hostname":"ubuntu","timestamp":1761501127306,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":3.791666666666667,"__token":"11","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501127969,"pid":471169,"hostname":"ubuntu","timestamp":1761501127969,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":3.791666666666667,"__token":"12","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501129993,"pid":471169,"hostname":"ubuntu","timestamp":1761501129993,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":3.791666666666667,"__token":"13","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501130825,"pid":471169,"hostname":"ubuntu","timestamp":1761501130825,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":3.791666666666667,"__token":"14","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501155098,"pid":471169,"hostname":"ubuntu","timestamp":1761501155098,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"cc0ad9d6-4ad5-4f35-8649-479776243df5","props":{"trackId":"track_1761500380591_lfbbzcl","startTimeInSeconds":0.6666666666666666},"__token":"15","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A"},"msg":"action_received"}
{"level":30,"time":1761501155947,"pid":471169,"hostname":"ubuntu","timestamp":1761501155947,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"cc0ad9d6-4ad5-4f35-8649-479776243df5","props":{"trackId":"track_1761500380591_lfbbzcl","startTimeInSeconds":0},"__token":"16","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A"},"msg":"action_received"}
{"level":30,"time":1761501162231,"pid":471169,"hostname":"ubuntu","timestamp":1761501162231,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/break01.ogg","trackId":"track_1761500741617_rpz0rna","startTimeInSeconds":7.333333333333333,"clipId":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","name":"break01.ogg","__token":"17","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A"},"msg":"action_received"}
{"level":30,"time":1761501177898,"pid":471169,"hostname":"ubuntu","timestamp":1761501177898,"socketId":"nOvgbJjfga1G8ZlRAAAT","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"nOvgbJjfga1G8ZlRAAAT","__senderName":"Alicer-nOvg"},"msg":"action_received"}
{"level":30,"time":1761501177924,"pid":471169,"hostname":"ubuntu","timestamp":1761501177924,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"nOvgbJjfga1G8ZlRAAAT","__token":"178","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek"},"msg":"action_received"}
{"level":30,"time":1761501177925,"pid":471169,"hostname":"ubuntu","timestamp":1761501177925,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9519166666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4391875,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"nOvgbJjfga1G8ZlRAAAT","__token":"18","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A"},"msg":"action_received"}
{"level":30,"time":1761501232502,"pid":471169,"hostname":"ubuntu","timestamp":1761501232502,"socketId":"Ivy-iYbsX-CKPC01AAAV","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"Ivy-iYbsX-CKPC01AAAV","__senderName":"Alicer-Ivy-"},"msg":"action_received"}
{"level":30,"time":1761501232528,"pid":471169,"hostname":"ubuntu","timestamp":1761501232528,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"Ivy-iYbsX-CKPC01AAAV","__token":"179","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek"},"msg":"action_received"}
{"level":30,"time":1761501232529,"pid":471169,"hostname":"ubuntu","timestamp":1761501232529,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9519166666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4391875,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"Ivy-iYbsX-CKPC01AAAV","__token":"19","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A"},"msg":"action_received"}
{"level":30,"time":1761501534373,"pid":471169,"hostname":"ubuntu","timestamp":1761501534373,"socketId":"vISwAgZtNfBFhOXDAAAX","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"vISwAgZtNfBFhOXDAAAX","__senderName":"Alicer-vISw"},"msg":"action_received"}
{"level":30,"time":1761501534399,"pid":471169,"hostname":"ubuntu","timestamp":1761501534399,"socketId":"Ivy-iYbsX-CKPC01AAAV","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"vISwAgZtNfBFhOXDAAAX","__token":"2","__senderId":"Ivy-iYbsX-CKPC01AAAV","__senderName":"Alicer-Ivy-"},"msg":"action_received"}
{"level":30,"time":1761501534400,"pid":471169,"hostname":"ubuntu","timestamp":1761501534400,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9519166666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4391875,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"vISwAgZtNfBFhOXDAAAX","__token":"20","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A"},"msg":"action_received"}
{"level":30,"time":1761501587457,"pid":471169,"hostname":"ubuntu","timestamp":1761501587457,"socketId":"IoQs_u3DI-tAWSgQAAAZ","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"IoQs_u3DI-tAWSgQAAAZ","__senderName":"Alicer-IoQs"},"msg":"action_received"}
{"level":30,"time":1761501587482,"pid":471169,"hostname":"ubuntu","timestamp":1761501587482,"socketId":"vISwAgZtNfBFhOXDAAAX","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"IoQs_u3DI-tAWSgQAAAZ","__token":"2","__senderId":"vISwAgZtNfBFhOXDAAAX","__senderName":"Alicer-vISw"},"msg":"action_received"}
{"level":30,"time":1761501587484,"pid":471169,"hostname":"ubuntu","timestamp":1761501587484,"socketId":"Ivy-iYbsX-CKPC01AAAV","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"IoQs_u3DI-tAWSgQAAAZ","__token":"3","__senderId":"Ivy-iYbsX-CKPC01AAAV","__senderName":"Alicer-Ivy-"},"msg":"action_received"}
{"level":30,"time":1761501591164,"pid":471169,"hostname":"ubuntu","timestamp":1761501591164,"socketId":"vISwAgZtNfBFhOXDAAAX","action":{"type":"SET_SEEK_TIME","seekTime":1.8177083333333333,"__token":"3","__senderId":"vISwAgZtNfBFhOXDAAAX","__senderName":"Alicer-vISw","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501591164,"pid":471169,"hostname":"ubuntu","timestamp":1761501591164,"socketId":"vISwAgZtNfBFhOXDAAAX","action":{"type":"SET_SEEK_TIME","seekTime":1.8177083333333333,"__token":"4","__senderId":"vISwAgZtNfBFhOXDAAAX","__senderName":"Alicer-vISw","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501593094,"pid":471169,"hostname":"ubuntu","timestamp":1761501593094,"socketId":"w3Fsa6PHR6dDYPGRAAAb","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"w3Fsa6PHR6dDYPGRAAAb","__senderName":"Alicer-w3Fs"},"msg":"action_received"}
{"level":30,"time":1761501593120,"pid":471169,"hostname":"ubuntu","timestamp":1761501593120,"socketId":"Ivy-iYbsX-CKPC01AAAV","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"w3Fsa6PHR6dDYPGRAAAb","__token":"4","__senderId":"Ivy-iYbsX-CKPC01AAAV","__senderName":"Alicer-Ivy-"},"msg":"action_received"}
{"level":30,"time":1761501593121,"pid":471169,"hostname":"ubuntu","timestamp":1761501593121,"socketId":"IoQs_u3DI-tAWSgQAAAZ","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"w3Fsa6PHR6dDYPGRAAAb","__token":"2","__senderId":"IoQs_u3DI-tAWSgQAAAZ","__senderName":"Alicer-IoQs"},"msg":"action_received"}
{"level":30,"time":1761501617780,"pid":471169,"hostname":"ubuntu","timestamp":1761501617780,"socketId":"l559LBAgtdF-AKZQAAAd","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"l559LBAgtdF-AKZQAAAd","__senderName":"Alicer-l559"},"msg":"action_received"}
{"level":30,"time":1761501617846,"pid":471169,"hostname":"ubuntu","timestamp":1761501617846,"socketId":"w3Fsa6PHR6dDYPGRAAAb","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"l559LBAgtdF-AKZQAAAd","__token":"2","__senderId":"w3Fsa6PHR6dDYPGRAAAb","__senderName":"Alicer-w3Fs"},"msg":"action_received"}
{"level":30,"time":1761501617847,"pid":471169,"hostname":"ubuntu","timestamp":1761501617847,"socketId":"IoQs_u3DI-tAWSgQAAAZ","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"l559LBAgtdF-AKZQAAAd","__token":"3","__senderId":"IoQs_u3DI-tAWSgQAAAZ","__senderName":"Alicer-IoQs"},"msg":"action_received"}
{"level":30,"time":1761501650662,"pid":471169,"hostname":"ubuntu","timestamp":1761501650662,"socketId":"l559LBAgtdF-AKZQAAAd","action":{"type":"SET_SEEK_TIME","seekTime":9.692708333333334,"__token":"2","__senderId":"l559LBAgtdF-AKZQAAAd","__senderName":"Alicer-l559","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501650666,"pid":471169,"hostname":"ubuntu","timestamp":1761501650666,"socketId":"l559LBAgtdF-AKZQAAAd","action":{"type":"SET_SEEK_TIME","seekTime":9.692708333333334,"__token":"3","__senderId":"l559LBAgtdF-AKZQAAAd","__senderName":"Alicer-l559","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501872188,"pid":471169,"hostname":"ubuntu","timestamp":1761501872188,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur"},"msg":"action_received"}
{"level":30,"time":1761501872216,"pid":471169,"hostname":"ubuntu","timestamp":1761501872216,"socketId":"w3Fsa6PHR6dDYPGRAAAb","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"h7UrKcXDpNY6Bl68AAAf","__token":"3","__senderId":"w3Fsa6PHR6dDYPGRAAAb","__senderName":"Alicer-w3Fs"},"msg":"action_received"}
{"level":30,"time":1761501872218,"pid":471169,"hostname":"ubuntu","timestamp":1761501872218,"socketId":"IoQs_u3DI-tAWSgQAAAZ","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"h7UrKcXDpNY6Bl68AAAf","__token":"4","__senderId":"IoQs_u3DI-tAWSgQAAAZ","__senderName":"Alicer-IoQs"},"msg":"action_received"}
{"level":30,"time":1761501874557,"pid":471169,"hostname":"ubuntu","timestamp":1761501874557,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"2","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501875317,"pid":471169,"hostname":"ubuntu","timestamp":1761501875317,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":8,"__token":"3","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501875997,"pid":471169,"hostname":"ubuntu","timestamp":1761501875997,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"4","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501878670,"pid":471169,"hostname":"ubuntu","timestamp":1761501878670,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":8,"__token":"5","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501879397,"pid":471169,"hostname":"ubuntu","timestamp":1761501879397,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"6","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501879917,"pid":471169,"hostname":"ubuntu","timestamp":1761501879917,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":8,"__token":"7","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501880581,"pid":471169,"hostname":"ubuntu","timestamp":1761501880581,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"8","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501881653,"pid":471169,"hostname":"ubuntu","timestamp":1761501881653,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":8,"__token":"9","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501882029,"pid":471169,"hostname":"ubuntu","timestamp":1761501882029,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"10","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501884317,"pid":471169,"hostname":"ubuntu","timestamp":1761501884317,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"11","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501884709,"pid":471169,"hostname":"ubuntu","timestamp":1761501884709,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"12","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885189,"pid":471169,"hostname":"ubuntu","timestamp":1761501885189,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.984375,"__token":"13","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885501,"pid":471169,"hostname":"ubuntu","timestamp":1761501885501,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.973958333333333,"__token":"14","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885517,"pid":471169,"hostname":"ubuntu","timestamp":1761501885517,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.953125,"__token":"15","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885536,"pid":471169,"hostname":"ubuntu","timestamp":1761501885536,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.942708333333333,"__token":"16","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885551,"pid":471169,"hostname":"ubuntu","timestamp":1761501885551,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.932291666666667,"__token":"17","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885570,"pid":471169,"hostname":"ubuntu","timestamp":1761501885570,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.890625,"__token":"18","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885604,"pid":471169,"hostname":"ubuntu","timestamp":1761501885604,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.869791666666667,"__token":"19","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885618,"pid":471169,"hostname":"ubuntu","timestamp":1761501885618,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.838541666666667,"__token":"20","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885638,"pid":471169,"hostname":"ubuntu","timestamp":1761501885638,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.828125,"__token":"21","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885654,"pid":471169,"hostname":"ubuntu","timestamp":1761501885654,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.796875,"__token":"22","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885671,"pid":471169,"hostname":"ubuntu","timestamp":1761501885671,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.776041666666667,"__token":"23","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885687,"pid":471169,"hostname":"ubuntu","timestamp":1761501885687,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.755208333333333,"__token":"24","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885704,"pid":471169,"hostname":"ubuntu","timestamp":1761501885704,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.734375,"__token":"25","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885738,"pid":471169,"hostname":"ubuntu","timestamp":1761501885738,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.713541666666667,"__token":"26","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885751,"pid":471169,"hostname":"ubuntu","timestamp":1761501885751,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.703125,"__token":"27","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885771,"pid":471169,"hostname":"ubuntu","timestamp":1761501885771,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.682291666666667,"__token":"28","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885788,"pid":471169,"hostname":"ubuntu","timestamp":1761501885788,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.671875,"__token":"29","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885804,"pid":471169,"hostname":"ubuntu","timestamp":1761501885804,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.630208333333333,"__token":"30","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885821,"pid":471169,"hostname":"ubuntu","timestamp":1761501885821,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.598958333333333,"__token":"31","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885838,"pid":471169,"hostname":"ubuntu","timestamp":1761501885838,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.536458333333333,"__token":"32","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885855,"pid":471169,"hostname":"ubuntu","timestamp":1761501885855,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.515625,"__token":"33","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885871,"pid":471169,"hostname":"ubuntu","timestamp":1761501885871,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.484375,"__token":"34","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885890,"pid":471169,"hostname":"ubuntu","timestamp":1761501885890,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.473958333333333,"__token":"35","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885905,"pid":471169,"hostname":"ubuntu","timestamp":1761501885905,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.463541666666667,"__token":"36","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885921,"pid":471169,"hostname":"ubuntu","timestamp":1761501885921,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.432291666666667,"__token":"37","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885941,"pid":471169,"hostname":"ubuntu","timestamp":1761501885941,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.401041666666667,"__token":"38","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885959,"pid":471169,"hostname":"ubuntu","timestamp":1761501885959,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.369791666666667,"__token":"39","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885968,"pid":471169,"hostname":"ubuntu","timestamp":1761501885968,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.359375,"__token":"40","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501885987,"pid":471169,"hostname":"ubuntu","timestamp":1761501885987,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.338541666666667,"__token":"41","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886001,"pid":471169,"hostname":"ubuntu","timestamp":1761501886001,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.328125,"__token":"42","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886020,"pid":471169,"hostname":"ubuntu","timestamp":1761501886020,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.296875,"__token":"43","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886034,"pid":471169,"hostname":"ubuntu","timestamp":1761501886034,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.276041666666667,"__token":"44","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886051,"pid":471169,"hostname":"ubuntu","timestamp":1761501886051,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.223958333333333,"__token":"45","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886068,"pid":471169,"hostname":"ubuntu","timestamp":1761501886068,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.171875,"__token":"46","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886088,"pid":471169,"hostname":"ubuntu","timestamp":1761501886088,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.151041666666667,"__token":"47","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886105,"pid":471169,"hostname":"ubuntu","timestamp":1761501886105,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.140625,"__token":"48","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886121,"pid":471169,"hostname":"ubuntu","timestamp":1761501886121,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.130208333333333,"__token":"49","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886167,"pid":471169,"hostname":"ubuntu","timestamp":1761501886167,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.119791666666667,"__token":"50","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886204,"pid":471169,"hostname":"ubuntu","timestamp":1761501886204,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.109375,"__token":"51","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886228,"pid":471169,"hostname":"ubuntu","timestamp":1761501886228,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.098958333333333,"__token":"52","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886267,"pid":471169,"hostname":"ubuntu","timestamp":1761501886267,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.088541666666667,"__token":"53","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886283,"pid":471169,"hostname":"ubuntu","timestamp":1761501886283,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.078125,"__token":"54","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886304,"pid":471169,"hostname":"ubuntu","timestamp":1761501886304,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.067708333333333,"__token":"55","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886321,"pid":471169,"hostname":"ubuntu","timestamp":1761501886321,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.057291666666667,"__token":"56","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886336,"pid":471169,"hostname":"ubuntu","timestamp":1761501886336,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.046875,"__token":"57","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886352,"pid":471169,"hostname":"ubuntu","timestamp":1761501886352,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.036458333333333,"__token":"58","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886372,"pid":471169,"hostname":"ubuntu","timestamp":1761501886372,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.026041666666667,"__token":"59","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886387,"pid":471169,"hostname":"ubuntu","timestamp":1761501886387,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.015625,"__token":"60","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886404,"pid":471169,"hostname":"ubuntu","timestamp":1761501886404,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.005208333333333,"__token":"61","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886420,"pid":471169,"hostname":"ubuntu","timestamp":1761501886420,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":4.984375,"__token":"62","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886437,"pid":471169,"hostname":"ubuntu","timestamp":1761501886437,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":4.963541666666667,"__token":"63","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886454,"pid":471169,"hostname":"ubuntu","timestamp":1761501886454,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":4.942708333333333,"__token":"64","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886485,"pid":471169,"hostname":"ubuntu","timestamp":1761501886485,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":4.911458333333333,"__token":"65","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886504,"pid":471169,"hostname":"ubuntu","timestamp":1761501886504,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":4.828125,"__token":"66","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886517,"pid":471169,"hostname":"ubuntu","timestamp":1761501886517,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":4.703125,"__token":"67","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886539,"pid":471169,"hostname":"ubuntu","timestamp":1761501886539,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":4.380208333333333,"__token":"68","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886552,"pid":471169,"hostname":"ubuntu","timestamp":1761501886552,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":4.046875,"__token":"69","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886571,"pid":471169,"hostname":"ubuntu","timestamp":1761501886571,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":3.8072916666666665,"__token":"70","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886629,"pid":471169,"hostname":"ubuntu","timestamp":1761501886629,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":3.5989583333333335,"__token":"71","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886630,"pid":471169,"hostname":"ubuntu","timestamp":1761501886629,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":3.4322916666666665,"__token":"72","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886630,"pid":471169,"hostname":"ubuntu","timestamp":1761501886630,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":3.359375,"__token":"73","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886635,"pid":471169,"hostname":"ubuntu","timestamp":1761501886635,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":3.3385416666666665,"__token":"74","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886651,"pid":471169,"hostname":"ubuntu","timestamp":1761501886651,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":3.3177083333333335,"__token":"75","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886680,"pid":471169,"hostname":"ubuntu","timestamp":1761501886680,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":3.2864583333333335,"__token":"76","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886692,"pid":471169,"hostname":"ubuntu","timestamp":1761501886692,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":3.1927083333333335,"__token":"77","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886702,"pid":471169,"hostname":"ubuntu","timestamp":1761501886702,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":3.0989583333333335,"__token":"78","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886725,"pid":471169,"hostname":"ubuntu","timestamp":1761501886725,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":2.953125,"__token":"79","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886739,"pid":471169,"hostname":"ubuntu","timestamp":1761501886739,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":2.8385416666666665,"__token":"80","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886756,"pid":471169,"hostname":"ubuntu","timestamp":1761501886756,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":2.734375,"__token":"81","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886773,"pid":471169,"hostname":"ubuntu","timestamp":1761501886773,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":2.640625,"__token":"82","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886787,"pid":471169,"hostname":"ubuntu","timestamp":1761501886787,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":2.5677083333333335,"__token":"83","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886804,"pid":471169,"hostname":"ubuntu","timestamp":1761501886804,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":2.4947916666666665,"__token":"84","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886822,"pid":471169,"hostname":"ubuntu","timestamp":1761501886822,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":2.4427083333333335,"__token":"85","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886837,"pid":471169,"hostname":"ubuntu","timestamp":1761501886837,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":2.4010416666666665,"__token":"86","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886856,"pid":471169,"hostname":"ubuntu","timestamp":1761501886856,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":2.328125,"__token":"87","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886871,"pid":471169,"hostname":"ubuntu","timestamp":1761501886871,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":2.2447916666666665,"__token":"88","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886887,"pid":471169,"hostname":"ubuntu","timestamp":1761501886887,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":2.0260416666666665,"__token":"89","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886906,"pid":471169,"hostname":"ubuntu","timestamp":1761501886906,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.9947916666666667,"__token":"90","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886922,"pid":471169,"hostname":"ubuntu","timestamp":1761501886922,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.984375,"__token":"91","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886939,"pid":471169,"hostname":"ubuntu","timestamp":1761501886939,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.9739583333333333,"__token":"92","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501886984,"pid":471169,"hostname":"ubuntu","timestamp":1761501886984,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.9635416666666667,"__token":"93","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501887100,"pid":471169,"hostname":"ubuntu","timestamp":1761501887100,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.9010416666666667,"__token":"94","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501887117,"pid":471169,"hostname":"ubuntu","timestamp":1761501887117,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.859375,"__token":"95","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501887134,"pid":471169,"hostname":"ubuntu","timestamp":1761501887134,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.8385416666666667,"__token":"96","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501887150,"pid":471169,"hostname":"ubuntu","timestamp":1761501887150,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.828125,"__token":"97","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501887171,"pid":471169,"hostname":"ubuntu","timestamp":1761501887171,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.796875,"__token":"98","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501887187,"pid":471169,"hostname":"ubuntu","timestamp":1761501887187,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.765625,"__token":"99","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501887201,"pid":471169,"hostname":"ubuntu","timestamp":1761501887201,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.6614583333333333,"__token":"100","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501887219,"pid":471169,"hostname":"ubuntu","timestamp":1761501887219,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.515625,"__token":"101","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501887235,"pid":471169,"hostname":"ubuntu","timestamp":1761501887235,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.4114583333333333,"__token":"102","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501887254,"pid":471169,"hostname":"ubuntu","timestamp":1761501887254,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.3802083333333333,"__token":"103","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501887279,"pid":471169,"hostname":"ubuntu","timestamp":1761501887278,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.3385416666666667,"__token":"104","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501887300,"pid":471169,"hostname":"ubuntu","timestamp":1761501887300,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.3177083333333333,"__token":"105","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501887317,"pid":471169,"hostname":"ubuntu","timestamp":1761501887317,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.2447916666666667,"__token":"106","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501887333,"pid":471169,"hostname":"ubuntu","timestamp":1761501887333,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.140625,"__token":"107","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501887354,"pid":471169,"hostname":"ubuntu","timestamp":1761501887354,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.015625,"__token":"108","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501887371,"pid":471169,"hostname":"ubuntu","timestamp":1761501887371,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":0.9114583333333334,"__token":"109","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501887389,"pid":471169,"hostname":"ubuntu","timestamp":1761501887389,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":0.828125,"__token":"110","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501887404,"pid":471169,"hostname":"ubuntu","timestamp":1761501887404,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":0.6822916666666666,"__token":"111","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501887417,"pid":471169,"hostname":"ubuntu","timestamp":1761501887417,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":0.546875,"__token":"112","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501887439,"pid":471169,"hostname":"ubuntu","timestamp":1761501887439,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":0.4322916666666667,"__token":"113","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501887454,"pid":471169,"hostname":"ubuntu","timestamp":1761501887454,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":0.3177083333333333,"__token":"114","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501887471,"pid":471169,"hostname":"ubuntu","timestamp":1761501887471,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":0.19270833333333334,"__token":"115","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501887488,"pid":471169,"hostname":"ubuntu","timestamp":1761501887488,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":0.08854166666666667,"__token":"116","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501887504,"pid":471169,"hostname":"ubuntu","timestamp":1761501887504,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":0.026041666666666668,"__token":"117","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501887520,"pid":471169,"hostname":"ubuntu","timestamp":1761501887520,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":0.015625,"__token":"118","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501890204,"pid":471169,"hostname":"ubuntu","timestamp":1761501890204,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0.015625,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":8},"__token":"119","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","scheduleAtServerMs":1761501890391,"__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501893484,"pid":471169,"hostname":"ubuntu","timestamp":1761501893484,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.942708333333333,"__token":"120","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501909269,"pid":471169,"hostname":"ubuntu","timestamp":1761501909269,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":8,"__token":"121","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501912013,"pid":471169,"hostname":"ubuntu","timestamp":1761501912013,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"122","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501913470,"pid":471169,"hostname":"ubuntu","timestamp":1761501913470,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"123","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761501941759,"pid":471169,"hostname":"ubuntu","timestamp":1761501941759,"socketId":"f42j1xbeDna3iPu6AAAh","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"f42j1xbeDna3iPu6AAAh","__senderName":"Alicer-f42j"},"msg":"action_received"}
{"level":30,"time":1761501941785,"pid":471169,"hostname":"ubuntu","timestamp":1761501941785,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"f42j1xbeDna3iPu6AAAh","__token":"124","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur"},"msg":"action_received"}
{"level":30,"time":1761501941787,"pid":471169,"hostname":"ubuntu","timestamp":1761501941787,"socketId":"IoQs_u3DI-tAWSgQAAAZ","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"f42j1xbeDna3iPu6AAAh","__token":"5","__senderId":"IoQs_u3DI-tAWSgQAAAZ","__senderName":"Alicer-IoQs"},"msg":"action_received"}
{"level":30,"time":1761501946014,"pid":471169,"hostname":"ubuntu","timestamp":1761501946014,"socketId":"61h4jzJh_gwDlb1bAAAj","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"61h4jzJh_gwDlb1bAAAj","__senderName":"Alicer-61h4"},"msg":"action_received"}
{"level":30,"time":1761501946041,"pid":471169,"hostname":"ubuntu","timestamp":1761501946041,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"61h4jzJh_gwDlb1bAAAj","__token":"125","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur"},"msg":"action_received"}
{"level":30,"time":1761501946042,"pid":471169,"hostname":"ubuntu","timestamp":1761501946042,"socketId":"IoQs_u3DI-tAWSgQAAAZ","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"61h4jzJh_gwDlb1bAAAj","__token":"6","__senderId":"IoQs_u3DI-tAWSgQAAAZ","__senderName":"Alicer-IoQs"},"msg":"action_received"}
{"level":30,"time":1761501949038,"pid":471169,"hostname":"ubuntu","timestamp":1761501949037,"socketId":"AcLieHU_6weRJAcBAAAl","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"AcLieHU_6weRJAcBAAAl","__senderName":"Alicer-AcLi"},"msg":"action_received"}
{"level":30,"time":1761501949064,"pid":471169,"hostname":"ubuntu","timestamp":1761501949064,"socketId":"IoQs_u3DI-tAWSgQAAAZ","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"AcLieHU_6weRJAcBAAAl","__token":"7","__senderId":"IoQs_u3DI-tAWSgQAAAZ","__senderName":"Alicer-IoQs"},"msg":"action_received"}
{"level":30,"time":1761501949065,"pid":471169,"hostname":"ubuntu","timestamp":1761501949065,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"AcLieHU_6weRJAcBAAAl","__token":"126","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur"},"msg":"action_received"}
{"level":30,"time":1761502131192,"pid":471169,"hostname":"ubuntu","timestamp":1761502131192,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":6.104166666666668,"__token":"228","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502135376,"pid":471169,"hostname":"ubuntu","timestamp":1761502135376,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":3.604166666666668,"__token":"229","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502269687,"pid":471169,"hostname":"ubuntu","timestamp":1761502269687,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.692789713541667,"__token":"295","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502269701,"pid":471169,"hostname":"ubuntu","timestamp":1761502269701,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.734456380208333,"__token":"296","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502269721,"pid":471169,"hostname":"ubuntu","timestamp":1761502269721,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.755289713541667,"__token":"297","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502269734,"pid":471169,"hostname":"ubuntu","timestamp":1761502269734,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.776123046875,"__token":"298","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502269741,"pid":471169,"hostname":"ubuntu","timestamp":1761502269741,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.859456380208333,"__token":"299","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502269749,"pid":471169,"hostname":"ubuntu","timestamp":1761502269749,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.859456380208333,"__token":"300","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502269758,"pid":471169,"hostname":"ubuntu","timestamp":1761502269758,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.901123046875,"__token":"301","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502269777,"pid":471169,"hostname":"ubuntu","timestamp":1761502269777,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.942789713541667,"__token":"302","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502269790,"pid":471169,"hostname":"ubuntu","timestamp":1761502269790,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.005289713541667,"__token":"303","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502269797,"pid":471169,"hostname":"ubuntu","timestamp":1761502269797,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.046956380208333,"__token":"304","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502269810,"pid":471169,"hostname":"ubuntu","timestamp":1761502269810,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.088623046875,"__token":"305","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502269816,"pid":471169,"hostname":"ubuntu","timestamp":1761502269816,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.192789713541667,"__token":"306","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502269827,"pid":471169,"hostname":"ubuntu","timestamp":1761502269827,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.359456380208333,"__token":"307","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502269830,"pid":471169,"hostname":"ubuntu","timestamp":1761502269830,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.401123046875,"__token":"308","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502269845,"pid":471169,"hostname":"ubuntu","timestamp":1761502269845,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.421956380208333,"__token":"309","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502269846,"pid":471169,"hostname":"ubuntu","timestamp":1761502269846,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.484456380208333,"__token":"310","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502269863,"pid":471169,"hostname":"ubuntu","timestamp":1761502269863,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.505289713541667,"__token":"311","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502269878,"pid":471169,"hostname":"ubuntu","timestamp":1761502269878,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.567789713541667,"__token":"312","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502269909,"pid":471169,"hostname":"ubuntu","timestamp":1761502269909,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.588623046875,"__token":"313","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502269926,"pid":471169,"hostname":"ubuntu","timestamp":1761502269926,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.630289713541667,"__token":"314","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502269934,"pid":471169,"hostname":"ubuntu","timestamp":1761502269934,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.713623046875,"__token":"315","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502269943,"pid":471169,"hostname":"ubuntu","timestamp":1761502269943,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.838623046875,"__token":"316","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502269950,"pid":471169,"hostname":"ubuntu","timestamp":1761502269950,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.921956380208333,"__token":"317","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502269961,"pid":471169,"hostname":"ubuntu","timestamp":1761502269961,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.984456380208333,"__token":"318","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502269966,"pid":471169,"hostname":"ubuntu","timestamp":1761502269966,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":7.046956380208333,"__token":"319","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502269975,"pid":471169,"hostname":"ubuntu","timestamp":1761502269975,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":7.130289713541667,"__token":"320","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502269981,"pid":471169,"hostname":"ubuntu","timestamp":1761502269981,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":7.151123046875,"__token":"321","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502269998,"pid":471169,"hostname":"ubuntu","timestamp":1761502269998,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":7.213623046875,"__token":"322","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502270014,"pid":471169,"hostname":"ubuntu","timestamp":1761502270014,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":7.234456380208333,"__token":"323","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502270058,"pid":471169,"hostname":"ubuntu","timestamp":1761502270058,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":7.296956380208333,"__token":"324","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502304555,"pid":471169,"hostname":"ubuntu","timestamp":1761502304555,"socketId":"x3fha2qluyVdPW2DAAAn","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"x3fha2qluyVdPW2DAAAn","__senderName":"Alicer-x3fh"},"msg":"action_received"}
{"level":30,"time":1761502304601,"pid":471169,"hostname":"ubuntu","timestamp":1761502304601,"socketId":"IoQs_u3DI-tAWSgQAAAZ","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"x3fha2qluyVdPW2DAAAn","__token":"8","__senderId":"IoQs_u3DI-tAWSgQAAAZ","__senderName":"Alicer-IoQs"},"msg":"action_received"}
{"level":30,"time":1761502304603,"pid":471169,"hostname":"ubuntu","timestamp":1761502304603,"socketId":"AcLieHU_6weRJAcBAAAl","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"x3fha2qluyVdPW2DAAAn","__token":"2","__senderId":"AcLieHU_6weRJAcBAAAl","__senderName":"Alicer-AcLi"},"msg":"action_received"}
{"level":30,"time":1761502344379,"pid":471169,"hostname":"ubuntu","timestamp":1761502344379,"socketId":"eq_5Dvch_VGgB1M5AAAr","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"eq_5Dvch_VGgB1M5AAAr","__senderName":"Alicer-eq_5"},"msg":"action_received"}
{"level":30,"time":1761502344412,"pid":471169,"hostname":"ubuntu","timestamp":1761502344411,"socketId":"IoQs_u3DI-tAWSgQAAAZ","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"eq_5Dvch_VGgB1M5AAAr","__token":"9","__senderId":"IoQs_u3DI-tAWSgQAAAZ","__senderName":"Alicer-IoQs"},"msg":"action_received"}
{"level":30,"time":1761502344413,"pid":471169,"hostname":"ubuntu","timestamp":1761502344413,"socketId":"AcLieHU_6weRJAcBAAAl","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"eq_5Dvch_VGgB1M5AAAr","__token":"3","__senderId":"AcLieHU_6weRJAcBAAAl","__senderName":"Alicer-AcLi"},"msg":"action_received"}
{"level":30,"time":1761502385456,"pid":471169,"hostname":"ubuntu","timestamp":1761502385456,"socketId":"eq_5Dvch_VGgB1M5AAAr","action":{"type":"SET_SEEK_TIME","seekTime":2.9023640950520835,"__token":"2","__senderId":"eq_5Dvch_VGgB1M5AAAr","__senderName":"Alicer-eq_5","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502385457,"pid":471169,"hostname":"ubuntu","timestamp":1761502385457,"socketId":"eq_5Dvch_VGgB1M5AAAr","action":{"type":"SET_SEEK_TIME","seekTime":2.9023640950520835,"__token":"3","__senderId":"eq_5Dvch_VGgB1M5AAAr","__senderName":"Alicer-eq_5","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502391296,"pid":471169,"hostname":"ubuntu","timestamp":1761502391296,"socketId":"AlXjZC1HrzeoKiHuAAAt","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"AlXjZC1HrzeoKiHuAAAt","__senderName":"Alicer-AlXj"},"msg":"action_received"}
{"level":30,"time":1761502391321,"pid":471169,"hostname":"ubuntu","timestamp":1761502391321,"socketId":"IoQs_u3DI-tAWSgQAAAZ","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"AlXjZC1HrzeoKiHuAAAt","__token":"10","__senderId":"IoQs_u3DI-tAWSgQAAAZ","__senderName":"Alicer-IoQs"},"msg":"action_received"}
{"level":30,"time":1761502391322,"pid":471169,"hostname":"ubuntu","timestamp":1761502391322,"socketId":"AcLieHU_6weRJAcBAAAl","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"AlXjZC1HrzeoKiHuAAAt","__token":"4","__senderId":"AcLieHU_6weRJAcBAAAl","__senderName":"Alicer-AcLi"},"msg":"action_received"}
{"level":30,"time":1761502417447,"pid":471169,"hostname":"ubuntu","timestamp":1761502417447,"socketId":"Ds1xa337oyEqdsfDAAAv","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"Ds1xa337oyEqdsfDAAAv","__senderName":"Alicer-Ds1x"},"msg":"action_received"}
{"level":30,"time":1761502417476,"pid":471169,"hostname":"ubuntu","timestamp":1761502417476,"socketId":"IoQs_u3DI-tAWSgQAAAZ","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"Ds1xa337oyEqdsfDAAAv","__token":"11","__senderId":"IoQs_u3DI-tAWSgQAAAZ","__senderName":"Alicer-IoQs"},"msg":"action_received"}
{"level":30,"time":1761502417477,"pid":471169,"hostname":"ubuntu","timestamp":1761502417477,"socketId":"AcLieHU_6weRJAcBAAAl","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"Ds1xa337oyEqdsfDAAAv","__token":"5","__senderId":"AcLieHU_6weRJAcBAAAl","__senderName":"Alicer-AcLi"},"msg":"action_received"}
{"level":30,"time":1761502528257,"pid":471169,"hostname":"ubuntu","timestamp":1761502528257,"socketId":"Iqq9RuP1KAuqEWVjAAA1","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"Iqq9RuP1KAuqEWVjAAA1","__senderName":"Alicer-Iqq9"},"msg":"action_received"}
{"level":30,"time":1761502528286,"pid":471169,"hostname":"ubuntu","timestamp":1761502528286,"socketId":"IoQs_u3DI-tAWSgQAAAZ","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"Iqq9RuP1KAuqEWVjAAA1","__token":"12","__senderId":"IoQs_u3DI-tAWSgQAAAZ","__senderName":"Alicer-IoQs"},"msg":"action_received"}
{"level":30,"time":1761502528287,"pid":471169,"hostname":"ubuntu","timestamp":1761502528287,"socketId":"AcLieHU_6weRJAcBAAAl","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"Iqq9RuP1KAuqEWVjAAA1","__token":"6","__senderId":"AcLieHU_6weRJAcBAAAl","__senderName":"Alicer-AcLi"},"msg":"action_received"}
{"level":30,"time":1761502541738,"pid":471169,"hostname":"ubuntu","timestamp":1761502541738,"socketId":"WGmY5NSX0VXEutG_AAA3","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"WGmY5NSX0VXEutG_AAA3","__senderName":"Alicer-WGmY"},"msg":"action_received"}
{"level":30,"time":1761502541769,"pid":471169,"hostname":"ubuntu","timestamp":1761502541769,"socketId":"Iqq9RuP1KAuqEWVjAAA1","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"WGmY5NSX0VXEutG_AAA3","__token":"2","__senderId":"Iqq9RuP1KAuqEWVjAAA1","__senderName":"Alicer-Iqq9"},"msg":"action_received"}
{"level":30,"time":1761502541770,"pid":471169,"hostname":"ubuntu","timestamp":1761502541770,"socketId":"IoQs_u3DI-tAWSgQAAAZ","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"WGmY5NSX0VXEutG_AAA3","__token":"13","__senderId":"IoQs_u3DI-tAWSgQAAAZ","__senderName":"Alicer-IoQs"},"msg":"action_received"}
{"level":30,"time":1761502549199,"pid":471169,"hostname":"ubuntu","timestamp":1761502549199,"socketId":"GkjX18Sx-LDU6N6jAAA5","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"GkjX18Sx-LDU6N6jAAA5","__senderName":"Alicer-GkjX"},"msg":"action_received"}
{"level":30,"time":1761502549227,"pid":471169,"hostname":"ubuntu","timestamp":1761502549227,"socketId":"Iqq9RuP1KAuqEWVjAAA1","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"GkjX18Sx-LDU6N6jAAA5","__token":"3","__senderId":"Iqq9RuP1KAuqEWVjAAA1","__senderName":"Alicer-Iqq9"},"msg":"action_received"}
{"level":30,"time":1761502549228,"pid":471169,"hostname":"ubuntu","timestamp":1761502549228,"socketId":"WGmY5NSX0VXEutG_AAA3","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"GkjX18Sx-LDU6N6jAAA5","__token":"2","__senderId":"WGmY5NSX0VXEutG_AAA3","__senderName":"Alicer-WGmY"},"msg":"action_received"}
{"level":30,"time":1761502575141,"pid":471169,"hostname":"ubuntu","timestamp":1761502575141,"socketId":"Iqq9RuP1KAuqEWVjAAA1","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":8,"__token":"5","__senderId":"Iqq9RuP1KAuqEWVjAAA1","__senderName":"Alicer-Iqq9","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502575684,"pid":471169,"hostname":"ubuntu","timestamp":1761502575684,"socketId":"Iqq9RuP1KAuqEWVjAAA1","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"6","__senderId":"Iqq9RuP1KAuqEWVjAAA1","__senderName":"Alicer-Iqq9","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502579653,"pid":471169,"hostname":"ubuntu","timestamp":1761502579653,"socketId":"Iqq9RuP1KAuqEWVjAAA1","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":1.895833333333333,"__token":"7","__senderId":"Iqq9RuP1KAuqEWVjAAA1","__senderName":"Alicer-Iqq9","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502595245,"pid":471169,"hostname":"ubuntu","timestamp":1761502595245,"socketId":"GkjX18Sx-LDU6N6jAAA5","action":{"type":"SET_SEEK_TIME","seekTime":0.7447916666666666,"__token":"2","__senderId":"GkjX18Sx-LDU6N6jAAA5","__senderName":"Alicer-GkjX","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502598999,"pid":471169,"hostname":"ubuntu","timestamp":1761502598999,"socketId":"GkjX18Sx-LDU6N6jAAA5","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0.7447916666666666,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":1.895833333333333},"__token":"3","__senderId":"GkjX18Sx-LDU6N6jAAA5","__senderName":"Alicer-GkjX","scheduleAtServerMs":1761502599186,"__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502600377,"pid":471169,"hostname":"ubuntu","timestamp":1761502600377,"socketId":"GkjX18Sx-LDU6N6jAAA5","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"4","__senderId":"GkjX18Sx-LDU6N6jAAA5","__senderName":"Alicer-GkjX","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502674611,"pid":471169,"hostname":"ubuntu","timestamp":1761502674611,"socketId":"WGmY5NSX0VXEutG_AAA3","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"cc0ad9d6-4ad5-4f35-8649-479776243df5","props":{"__operation":"slice","sliceTimeInTimeline":2.6666666666666665},"__token":"4","__senderId":"WGmY5NSX0VXEutG_AAA3","__senderName":"Alicer-WGmY"},"msg":"action_received"}
{"level":30,"time":1761502689281,"pid":471169,"hostname":"ubuntu","timestamp":1761502689281,"socketId":"WGmY5NSX0VXEutG_AAA3","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"5","__senderId":"WGmY5NSX0VXEutG_AAA3","__senderName":"Alicer-WGmY","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502690257,"pid":471169,"hostname":"ubuntu","timestamp":1761502690257,"socketId":"WGmY5NSX0VXEutG_AAA3","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":8,"__token":"6","__senderId":"WGmY5NSX0VXEutG_AAA3","__senderName":"Alicer-WGmY","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502691369,"pid":471169,"hostname":"ubuntu","timestamp":1761502691369,"socketId":"WGmY5NSX0VXEutG_AAA3","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"7","__senderId":"WGmY5NSX0VXEutG_AAA3","__senderName":"Alicer-WGmY","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502694585,"pid":471169,"hostname":"ubuntu","timestamp":1761502694585,"socketId":"WGmY5NSX0VXEutG_AAA3","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":1.0208333333333333,"loopEndTime":8,"__token":"8","__senderId":"WGmY5NSX0VXEutG_AAA3","__senderName":"Alicer-WGmY","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502695577,"pid":471169,"hostname":"ubuntu","timestamp":1761502695577,"socketId":"WGmY5NSX0VXEutG_AAA3","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":2.15625,"loopEndTime":8,"__token":"9","__senderId":"WGmY5NSX0VXEutG_AAA3","__senderName":"Alicer-WGmY","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502698732,"pid":471169,"hostname":"ubuntu","timestamp":1761502698732,"socketId":"GkjX18Sx-LDU6N6jAAA5","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":1.4791666666666665,"loopEndTime":8,"__token":"5","__senderId":"GkjX18Sx-LDU6N6jAAA5","__senderName":"Alicer-GkjX","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502700619,"pid":471169,"hostname":"ubuntu","timestamp":1761502700619,"socketId":"GkjX18Sx-LDU6N6jAAA5","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":1.0104166666666665,"loopEndTime":8,"__token":"6","__senderId":"GkjX18Sx-LDU6N6jAAA5","__senderName":"Alicer-GkjX","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761502705099,"pid":471169,"hostname":"ubuntu","timestamp":1761502705099,"socketId":"GkjX18Sx-LDU6N6jAAA5","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":1.3020833333333333,"loopEndTime":8,"__token":"7","__senderId":"GkjX18Sx-LDU6N6jAAA5","__senderName":"Alicer-GkjX","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507535390,"pid":471169,"hostname":"ubuntu","timestamp":1761507535390,"socketId":"Iqq9RuP1KAuqEWVjAAA1","action":{"type":"SET_SEEK_TIME","seekTime":6.932291666666667,"__token":"11","__senderId":"Iqq9RuP1KAuqEWVjAAA1","__senderName":"Alicer-Iqq9","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507536140,"pid":471169,"hostname":"ubuntu","timestamp":1761507536140,"socketId":"Iqq9RuP1KAuqEWVjAAA1","action":{"type":"SET_SEEK_TIME","seekTime":6.244791666666667,"__token":"12","__senderId":"Iqq9RuP1KAuqEWVjAAA1","__senderName":"Alicer-Iqq9","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507536668,"pid":471169,"hostname":"ubuntu","timestamp":1761507536668,"socketId":"Iqq9RuP1KAuqEWVjAAA1","action":{"type":"SET_SEEK_TIME","seekTime":5.380208333333333,"__token":"13","__senderId":"Iqq9RuP1KAuqEWVjAAA1","__senderName":"Alicer-Iqq9","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507537252,"pid":471169,"hostname":"ubuntu","timestamp":1761507537252,"socketId":"Iqq9RuP1KAuqEWVjAAA1","action":{"type":"SET_SEEK_TIME","seekTime":4.817708333333333,"__token":"14","__senderId":"Iqq9RuP1KAuqEWVjAAA1","__senderName":"Alicer-Iqq9","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507537852,"pid":471169,"hostname":"ubuntu","timestamp":1761507537852,"socketId":"Iqq9RuP1KAuqEWVjAAA1","action":{"type":"SET_SEEK_TIME","seekTime":4.192708333333333,"__token":"15","__senderId":"Iqq9RuP1KAuqEWVjAAA1","__senderName":"Alicer-Iqq9","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507558829,"pid":471169,"hostname":"ubuntu","timestamp":1761507558829,"socketId":"Iqq9RuP1KAuqEWVjAAA1","action":{"type":"SET_SEEK_TIME","seekTime":4.557291666666667,"__token":"16","__senderId":"Iqq9RuP1KAuqEWVjAAA1","__senderName":"Alicer-Iqq9","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507562229,"pid":471169,"hostname":"ubuntu","timestamp":1761507562229,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J"},"msg":"action_received"}
{"level":30,"time":1761507562255,"pid":471169,"hostname":"ubuntu","timestamp":1761507562255,"socketId":"GkjX18Sx-LDU6N6jAAA5","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":2.6666666666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875},{"id":"66fd2139-81bf-492c-a838-4e6c3e96c511","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":2.6666666666666665,"durationInSeconds":1.2937708333333333,"offset":2.6666666666666665,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665}]},"__target":"2E2JyHKP_XkFxLW4AAA7","__token":"8","__senderId":"GkjX18Sx-LDU6N6jAAA5","__senderName":"Alicer-GkjX"},"msg":"action_received"}
{"level":30,"time":1761507562256,"pid":471169,"hostname":"ubuntu","timestamp":1761507562256,"socketId":"WGmY5NSX0VXEutG_AAA3","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":2.6666666666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666},{"id":"5ba02dc4-c490-47b4-9a83-7035d4aa5c08","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":2.6666666666666665,"durationInSeconds":1.2937708333333333,"offset":2.6666666666666665,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375}]},"__target":"2E2JyHKP_XkFxLW4AAA7","__token":"10","__senderId":"WGmY5NSX0VXEutG_AAA3","__senderName":"Alicer-WGmY"},"msg":"action_received"}
{"level":30,"time":1761507564850,"pid":471169,"hostname":"ubuntu","timestamp":1761507564850,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SYNC_MODE","mode":"local","__token":"2","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507572461,"pid":471169,"hostname":"ubuntu","timestamp":1761507572461,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey"},"msg":"action_received"}
{"level":30,"time":1761507572489,"pid":471169,"hostname":"ubuntu","timestamp":1761507572489,"socketId":"WGmY5NSX0VXEutG_AAA3","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":2.6666666666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666},{"id":"5ba02dc4-c490-47b4-9a83-7035d4aa5c08","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":2.6666666666666665,"durationInSeconds":1.2937708333333333,"offset":2.6666666666666665,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375}]},"__target":"W2Ey9VSpXkEXXSAoAAA9","__token":"11","__senderId":"WGmY5NSX0VXEutG_AAA3","__senderName":"Alicer-WGmY"},"msg":"action_received"}
{"level":30,"time":1761507572490,"pid":471169,"hostname":"ubuntu","timestamp":1761507572490,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":2.6666666666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666},{"id":"66fd2139-81bf-492c-a838-4e6c3e96c511","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":2.6666666666666665,"durationInSeconds":1.2937708333333333,"offset":2.6666666666666665,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375}]},"__target":"W2Ey9VSpXkEXXSAoAAA9","__token":"4","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J"},"msg":"action_received"}
{"level":30,"time":1761507576246,"pid":471169,"hostname":"ubuntu","timestamp":1761507576246,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SYNC_MODE","mode":"local","__token":"2","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507584100,"pid":471169,"hostname":"ubuntu","timestamp":1761507584100,"socketId":"bA9Xw-79AuUPV7F5AAA_","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"bA9Xw-79AuUPV7F5AAA_","__senderName":"Alicer-bA9X"},"msg":"action_received"}
{"level":30,"time":1761507584126,"pid":471169,"hostname":"ubuntu","timestamp":1761507584126,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":2.6666666666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666},{"id":"66fd2139-81bf-492c-a838-4e6c3e96c511","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":2.6666666666666665,"durationInSeconds":1.2937708333333333,"offset":2.6666666666666665,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375}]},"__target":"bA9Xw-79AuUPV7F5AAA_","__token":"5","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J"},"msg":"action_received"}
{"level":30,"time":1761507584128,"pid":471169,"hostname":"ubuntu","timestamp":1761507584128,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":2.6666666666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875},{"id":"5ba02dc4-c490-47b4-9a83-7035d4aa5c08","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":2.6666666666666665,"durationInSeconds":1.2937708333333333,"offset":2.6666666666666665,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665}]},"__target":"bA9Xw-79AuUPV7F5AAA_","__token":"30","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey"},"msg":"action_received"}
{"level":30,"time":1761507587832,"pid":471169,"hostname":"ubuntu","timestamp":1761507587832,"socketId":"bA9Xw-79AuUPV7F5AAA_","action":{"type":"SET_SYNC_MODE","mode":"local","__token":"2","__senderId":"bA9Xw-79AuUPV7F5AAA_","__senderName":"Alicer-bA9X","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507591919,"pid":471169,"hostname":"ubuntu","timestamp":1761507591919,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.484375,"__token":"62","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507591998,"pid":471169,"hostname":"ubuntu","timestamp":1761507591998,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.4739583333333335,"__token":"63","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592023,"pid":471169,"hostname":"ubuntu","timestamp":1761507592023,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.4635416666666665,"__token":"64","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592030,"pid":471169,"hostname":"ubuntu","timestamp":1761507592030,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.453125,"__token":"65","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592045,"pid":471169,"hostname":"ubuntu","timestamp":1761507592045,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.4427083333333335,"__token":"66","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592062,"pid":471169,"hostname":"ubuntu","timestamp":1761507592062,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.4114583333333335,"__token":"67","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592079,"pid":471169,"hostname":"ubuntu","timestamp":1761507592079,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.3697916666666665,"__token":"68","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592095,"pid":471169,"hostname":"ubuntu","timestamp":1761507592095,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.3385416666666665,"__token":"69","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592112,"pid":471169,"hostname":"ubuntu","timestamp":1761507592112,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.265625,"__token":"70","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592129,"pid":471169,"hostname":"ubuntu","timestamp":1761507592129,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.203125,"__token":"71","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592146,"pid":471169,"hostname":"ubuntu","timestamp":1761507592146,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.140625,"__token":"72","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592163,"pid":471169,"hostname":"ubuntu","timestamp":1761507592163,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.046875,"__token":"73","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592180,"pid":471169,"hostname":"ubuntu","timestamp":1761507592180,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.9947916666666665,"__token":"74","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592197,"pid":471169,"hostname":"ubuntu","timestamp":1761507592197,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.953125,"__token":"75","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592216,"pid":471169,"hostname":"ubuntu","timestamp":1761507592216,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.9322916666666665,"__token":"76","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592230,"pid":471169,"hostname":"ubuntu","timestamp":1761507592230,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.921875,"__token":"77","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592246,"pid":471169,"hostname":"ubuntu","timestamp":1761507592246,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.9114583333333335,"__token":"78","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592262,"pid":471169,"hostname":"ubuntu","timestamp":1761507592262,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.9010416666666665,"__token":"79","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592279,"pid":471169,"hostname":"ubuntu","timestamp":1761507592279,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.890625,"__token":"80","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592295,"pid":471169,"hostname":"ubuntu","timestamp":1761507592295,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.8802083333333335,"__token":"81","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592379,"pid":471169,"hostname":"ubuntu","timestamp":1761507592379,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.8802083333333335,"__token":"82","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592454,"pid":471169,"hostname":"ubuntu","timestamp":1761507592454,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.859375,"__token":"83","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592702,"pid":471169,"hostname":"ubuntu","timestamp":1761507592702,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.859375,"__token":"84","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592750,"pid":471169,"hostname":"ubuntu","timestamp":1761507592750,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.8697916666666665,"__token":"85","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592774,"pid":471169,"hostname":"ubuntu","timestamp":1761507592774,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.8802083333333335,"__token":"86","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592790,"pid":471169,"hostname":"ubuntu","timestamp":1761507592790,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.8802083333333335,"__token":"87","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592798,"pid":471169,"hostname":"ubuntu","timestamp":1761507592798,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.890625,"__token":"88","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592806,"pid":471169,"hostname":"ubuntu","timestamp":1761507592806,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.9010416666666665,"__token":"89","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592814,"pid":471169,"hostname":"ubuntu","timestamp":1761507592814,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.9114583333333335,"__token":"90","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592827,"pid":471169,"hostname":"ubuntu","timestamp":1761507592827,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.9322916666666665,"__token":"91","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592844,"pid":471169,"hostname":"ubuntu","timestamp":1761507592844,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.9635416666666665,"__token":"92","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592862,"pid":471169,"hostname":"ubuntu","timestamp":1761507592862,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.015625,"__token":"93","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592878,"pid":471169,"hostname":"ubuntu","timestamp":1761507592878,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.1197916666666665,"__token":"94","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592895,"pid":471169,"hostname":"ubuntu","timestamp":1761507592895,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.2760416666666665,"__token":"95","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592912,"pid":471169,"hostname":"ubuntu","timestamp":1761507592912,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.4114583333333335,"__token":"96","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592928,"pid":471169,"hostname":"ubuntu","timestamp":1761507592928,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.5677083333333335,"__token":"97","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592947,"pid":471169,"hostname":"ubuntu","timestamp":1761507592947,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.7239583333333335,"__token":"98","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592963,"pid":471169,"hostname":"ubuntu","timestamp":1761507592963,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.7552083333333335,"__token":"99","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592980,"pid":471169,"hostname":"ubuntu","timestamp":1761507592980,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.7760416666666665,"__token":"100","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507592996,"pid":471169,"hostname":"ubuntu","timestamp":1761507592996,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.7864583333333335,"__token":"101","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593028,"pid":471169,"hostname":"ubuntu","timestamp":1761507593028,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.828125,"__token":"102","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593047,"pid":471169,"hostname":"ubuntu","timestamp":1761507593047,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.8489583333333335,"__token":"103","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593061,"pid":471169,"hostname":"ubuntu","timestamp":1761507593061,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.859375,"__token":"104","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593096,"pid":471169,"hostname":"ubuntu","timestamp":1761507593096,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.8697916666666665,"__token":"105","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593319,"pid":471169,"hostname":"ubuntu","timestamp":1761507593319,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.859375,"__token":"106","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593327,"pid":471169,"hostname":"ubuntu","timestamp":1761507593327,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.8177083333333335,"__token":"107","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593333,"pid":471169,"hostname":"ubuntu","timestamp":1761507593333,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.7760416666666665,"__token":"108","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593353,"pid":471169,"hostname":"ubuntu","timestamp":1761507593353,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.7135416666666665,"__token":"109","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593363,"pid":471169,"hostname":"ubuntu","timestamp":1761507593363,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.5677083333333335,"__token":"110","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593379,"pid":471169,"hostname":"ubuntu","timestamp":1761507593379,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.3802083333333335,"__token":"111","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593395,"pid":471169,"hostname":"ubuntu","timestamp":1761507593395,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.203125,"__token":"112","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593415,"pid":471169,"hostname":"ubuntu","timestamp":1761507593415,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.046875,"__token":"113","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593430,"pid":471169,"hostname":"ubuntu","timestamp":1761507593430,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.890625,"__token":"114","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593447,"pid":471169,"hostname":"ubuntu","timestamp":1761507593447,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.734375,"__token":"115","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593463,"pid":471169,"hostname":"ubuntu","timestamp":1761507593463,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.5052083333333335,"__token":"116","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593480,"pid":471169,"hostname":"ubuntu","timestamp":1761507593480,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.359375,"__token":"117","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593496,"pid":471169,"hostname":"ubuntu","timestamp":1761507593496,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.265625,"__token":"118","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593512,"pid":471169,"hostname":"ubuntu","timestamp":1761507593512,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.1302083333333335,"__token":"119","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593529,"pid":471169,"hostname":"ubuntu","timestamp":1761507593529,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.0364583333333335,"__token":"120","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593546,"pid":471169,"hostname":"ubuntu","timestamp":1761507593546,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.953125,"__token":"121","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593563,"pid":471169,"hostname":"ubuntu","timestamp":1761507593563,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.890625,"__token":"122","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593579,"pid":471169,"hostname":"ubuntu","timestamp":1761507593579,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.8489583333333333,"__token":"123","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593597,"pid":471169,"hostname":"ubuntu","timestamp":1761507593597,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.8072916666666667,"__token":"124","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593654,"pid":471169,"hostname":"ubuntu","timestamp":1761507593654,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.765625,"__token":"125","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593654,"pid":471169,"hostname":"ubuntu","timestamp":1761507593654,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.734375,"__token":"126","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593654,"pid":471169,"hostname":"ubuntu","timestamp":1761507593654,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.7239583333333333,"__token":"127","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593661,"pid":471169,"hostname":"ubuntu","timestamp":1761507593661,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.703125,"__token":"128","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593687,"pid":471169,"hostname":"ubuntu","timestamp":1761507593687,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.6927083333333333,"__token":"129","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593716,"pid":471169,"hostname":"ubuntu","timestamp":1761507593716,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.6822916666666667,"__token":"130","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593728,"pid":471169,"hostname":"ubuntu","timestamp":1761507593728,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.6614583333333333,"__token":"131","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593745,"pid":471169,"hostname":"ubuntu","timestamp":1761507593745,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.640625,"__token":"132","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593762,"pid":471169,"hostname":"ubuntu","timestamp":1761507593762,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.5989583333333333,"__token":"133","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593779,"pid":471169,"hostname":"ubuntu","timestamp":1761507593779,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.578125,"__token":"134","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593795,"pid":471169,"hostname":"ubuntu","timestamp":1761507593795,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.5364583333333333,"__token":"135","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593811,"pid":471169,"hostname":"ubuntu","timestamp":1761507593811,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.4947916666666667,"__token":"136","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593830,"pid":471169,"hostname":"ubuntu","timestamp":1761507593830,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.4635416666666667,"__token":"137","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593845,"pid":471169,"hostname":"ubuntu","timestamp":1761507593845,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.4322916666666667,"__token":"138","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593862,"pid":471169,"hostname":"ubuntu","timestamp":1761507593862,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.4114583333333333,"__token":"139","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593879,"pid":471169,"hostname":"ubuntu","timestamp":1761507593879,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.359375,"__token":"140","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593895,"pid":471169,"hostname":"ubuntu","timestamp":1761507593895,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.3385416666666667,"__token":"141","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593912,"pid":471169,"hostname":"ubuntu","timestamp":1761507593912,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.3177083333333333,"__token":"142","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593929,"pid":471169,"hostname":"ubuntu","timestamp":1761507593929,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.265625,"__token":"143","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593945,"pid":471169,"hostname":"ubuntu","timestamp":1761507593945,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.234375,"__token":"144","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593962,"pid":471169,"hostname":"ubuntu","timestamp":1761507593962,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.2135416666666667,"__token":"145","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507593978,"pid":471169,"hostname":"ubuntu","timestamp":1761507593978,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.1822916666666667,"__token":"146","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594012,"pid":471169,"hostname":"ubuntu","timestamp":1761507594012,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.1510416666666667,"__token":"147","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594046,"pid":471169,"hostname":"ubuntu","timestamp":1761507594046,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.140625,"__token":"148","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594064,"pid":471169,"hostname":"ubuntu","timestamp":1761507594064,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.1302083333333333,"__token":"149","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594211,"pid":471169,"hostname":"ubuntu","timestamp":1761507594211,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.1197916666666667,"__token":"150","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594228,"pid":471169,"hostname":"ubuntu","timestamp":1761507594228,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.109375,"__token":"151","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594245,"pid":471169,"hostname":"ubuntu","timestamp":1761507594245,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.0989583333333333,"__token":"152","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594261,"pid":471169,"hostname":"ubuntu","timestamp":1761507594261,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.0885416666666667,"__token":"153","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594286,"pid":471169,"hostname":"ubuntu","timestamp":1761507594286,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.0677083333333333,"__token":"154","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594328,"pid":471169,"hostname":"ubuntu","timestamp":1761507594328,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.0572916666666667,"__token":"155","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594390,"pid":471169,"hostname":"ubuntu","timestamp":1761507594390,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.0260416666666667,"__token":"156","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594397,"pid":471169,"hostname":"ubuntu","timestamp":1761507594397,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.015625,"__token":"157","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594423,"pid":471169,"hostname":"ubuntu","timestamp":1761507594423,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.0052083333333333,"__token":"158","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594445,"pid":471169,"hostname":"ubuntu","timestamp":1761507594445,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.9947916666666666,"__token":"159","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594461,"pid":471169,"hostname":"ubuntu","timestamp":1761507594461,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.984375,"__token":"160","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594478,"pid":471169,"hostname":"ubuntu","timestamp":1761507594478,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.953125,"__token":"161","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594495,"pid":471169,"hostname":"ubuntu","timestamp":1761507594495,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.9322916666666666,"__token":"162","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594512,"pid":471169,"hostname":"ubuntu","timestamp":1761507594512,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.9114583333333334,"__token":"163","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594528,"pid":471169,"hostname":"ubuntu","timestamp":1761507594528,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.9010416666666666,"__token":"164","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594544,"pid":471169,"hostname":"ubuntu","timestamp":1761507594544,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.8697916666666666,"__token":"165","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594561,"pid":471169,"hostname":"ubuntu","timestamp":1761507594561,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.8489583333333334,"__token":"166","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594578,"pid":471169,"hostname":"ubuntu","timestamp":1761507594578,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.8385416666666666,"__token":"167","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594595,"pid":471169,"hostname":"ubuntu","timestamp":1761507594595,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.828125,"__token":"168","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594611,"pid":471169,"hostname":"ubuntu","timestamp":1761507594611,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.8177083333333334,"__token":"169","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594629,"pid":471169,"hostname":"ubuntu","timestamp":1761507594629,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.8072916666666666,"__token":"170","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594646,"pid":471169,"hostname":"ubuntu","timestamp":1761507594646,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.796875,"__token":"171","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594662,"pid":471169,"hostname":"ubuntu","timestamp":1761507594662,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.7864583333333334,"__token":"172","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594678,"pid":471169,"hostname":"ubuntu","timestamp":1761507594678,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.7760416666666666,"__token":"173","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594712,"pid":471169,"hostname":"ubuntu","timestamp":1761507594712,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.765625,"__token":"174","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594728,"pid":471169,"hostname":"ubuntu","timestamp":1761507594728,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.7447916666666666,"__token":"175","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594745,"pid":471169,"hostname":"ubuntu","timestamp":1761507594745,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.734375,"__token":"176","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594761,"pid":471169,"hostname":"ubuntu","timestamp":1761507594761,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.7135416666666666,"__token":"177","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594777,"pid":471169,"hostname":"ubuntu","timestamp":1761507594777,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.6927083333333334,"__token":"178","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594795,"pid":471169,"hostname":"ubuntu","timestamp":1761507594795,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.671875,"__token":"179","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594811,"pid":471169,"hostname":"ubuntu","timestamp":1761507594811,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.6510416666666666,"__token":"180","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594845,"pid":471169,"hostname":"ubuntu","timestamp":1761507594845,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.6197916666666666,"__token":"181","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594862,"pid":471169,"hostname":"ubuntu","timestamp":1761507594862,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.5989583333333334,"__token":"182","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594878,"pid":471169,"hostname":"ubuntu","timestamp":1761507594878,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.546875,"__token":"183","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594895,"pid":471169,"hostname":"ubuntu","timestamp":1761507594895,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.5052083333333334,"__token":"184","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594912,"pid":471169,"hostname":"ubuntu","timestamp":1761507594912,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.4739583333333333,"__token":"185","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594928,"pid":471169,"hostname":"ubuntu","timestamp":1761507594928,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.4010416666666667,"__token":"186","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594946,"pid":471169,"hostname":"ubuntu","timestamp":1761507594946,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.328125,"__token":"187","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594961,"pid":471169,"hostname":"ubuntu","timestamp":1761507594961,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.2552083333333333,"__token":"188","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594979,"pid":471169,"hostname":"ubuntu","timestamp":1761507594979,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.21354166666666666,"__token":"189","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507594996,"pid":471169,"hostname":"ubuntu","timestamp":1761507594996,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.15104166666666666,"__token":"190","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507595012,"pid":471169,"hostname":"ubuntu","timestamp":1761507595012,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.06770833333333333,"__token":"191","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507595031,"pid":471169,"hostname":"ubuntu","timestamp":1761507595031,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.015625,"__token":"192","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507595045,"pid":471169,"hostname":"ubuntu","timestamp":1761507595045,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.109375,"__token":"193","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507595063,"pid":471169,"hostname":"ubuntu","timestamp":1761507595063,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.19270833333333334,"__token":"194","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507595080,"pid":471169,"hostname":"ubuntu","timestamp":1761507595080,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.3072916666666667,"__token":"195","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507595095,"pid":471169,"hostname":"ubuntu","timestamp":1761507595095,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.359375,"__token":"196","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507595111,"pid":471169,"hostname":"ubuntu","timestamp":1761507595111,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.421875,"__token":"197","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507595128,"pid":471169,"hostname":"ubuntu","timestamp":1761507595128,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.453125,"__token":"198","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507595167,"pid":471169,"hostname":"ubuntu","timestamp":1761507595167,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.4635416666666667,"__token":"199","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507595168,"pid":471169,"hostname":"ubuntu","timestamp":1761507595168,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.4947916666666667,"__token":"200","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507595871,"pid":471169,"hostname":"ubuntu","timestamp":1761507595871,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.484375,"__token":"201","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507595878,"pid":471169,"hostname":"ubuntu","timestamp":1761507595878,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.4635416666666667,"__token":"202","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507595886,"pid":471169,"hostname":"ubuntu","timestamp":1761507595886,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.453125,"__token":"203","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507595895,"pid":471169,"hostname":"ubuntu","timestamp":1761507595895,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.421875,"__token":"204","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507595911,"pid":471169,"hostname":"ubuntu","timestamp":1761507595911,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.3697916666666667,"__token":"205","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507595927,"pid":471169,"hostname":"ubuntu","timestamp":1761507595927,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.3385416666666667,"__token":"206","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507595944,"pid":471169,"hostname":"ubuntu","timestamp":1761507595944,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.296875,"__token":"207","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507595961,"pid":471169,"hostname":"ubuntu","timestamp":1761507595961,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.22395833333333334,"__token":"208","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507595977,"pid":471169,"hostname":"ubuntu","timestamp":1761507595977,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.13020833333333334,"__token":"209","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507595994,"pid":471169,"hostname":"ubuntu","timestamp":1761507595994,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.005208333333333333,"__token":"210","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507596011,"pid":471169,"hostname":"ubuntu","timestamp":1761507596011,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.13020833333333334,"__token":"211","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507596027,"pid":471169,"hostname":"ubuntu","timestamp":1761507596027,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.21354166666666666,"__token":"212","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507596044,"pid":471169,"hostname":"ubuntu","timestamp":1761507596044,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.3072916666666667,"__token":"213","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507596061,"pid":471169,"hostname":"ubuntu","timestamp":1761507596061,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.359375,"__token":"214","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507596079,"pid":471169,"hostname":"ubuntu","timestamp":1761507596079,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.3802083333333333,"__token":"215","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507596095,"pid":471169,"hostname":"ubuntu","timestamp":1761507596095,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.390625,"__token":"216","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507596112,"pid":471169,"hostname":"ubuntu","timestamp":1761507596112,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.4010416666666667,"__token":"217","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507596128,"pid":471169,"hostname":"ubuntu","timestamp":1761507596128,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.4010416666666667,"__token":"218","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507596144,"pid":471169,"hostname":"ubuntu","timestamp":1761507596144,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.4114583333333333,"__token":"219","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507596174,"pid":471169,"hostname":"ubuntu","timestamp":1761507596174,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.421875,"__token":"220","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507596181,"pid":471169,"hostname":"ubuntu","timestamp":1761507596181,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.4322916666666667,"__token":"221","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507596270,"pid":471169,"hostname":"ubuntu","timestamp":1761507596270,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.4427083333333333,"__token":"222","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507596295,"pid":471169,"hostname":"ubuntu","timestamp":1761507596295,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.453125,"__token":"223","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507596479,"pid":471169,"hostname":"ubuntu","timestamp":1761507596479,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.4635416666666667,"__token":"224","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507603448,"pid":471169,"hostname":"ubuntu","timestamp":1761507603448,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":6.026041666666667,"__token":"11","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507603455,"pid":471169,"hostname":"ubuntu","timestamp":1761507603455,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":6.036458333333333,"__token":"12","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507603582,"pid":471169,"hostname":"ubuntu","timestamp":1761507603582,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":6.057291666666667,"__token":"13","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507603630,"pid":471169,"hostname":"ubuntu","timestamp":1761507603630,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":6.067708333333333,"__token":"14","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507603646,"pid":471169,"hostname":"ubuntu","timestamp":1761507603646,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":6.088541666666667,"__token":"15","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507604456,"pid":471169,"hostname":"ubuntu","timestamp":1761507604456,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":6.088541666666667,"__token":"16","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507604583,"pid":471169,"hostname":"ubuntu","timestamp":1761507604583,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":6.067708333333333,"__token":"17","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507604598,"pid":471169,"hostname":"ubuntu","timestamp":1761507604598,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":6.046875,"__token":"18","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507604606,"pid":471169,"hostname":"ubuntu","timestamp":1761507604606,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":6.026041666666667,"__token":"19","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507604614,"pid":471169,"hostname":"ubuntu","timestamp":1761507604614,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":6.015625,"__token":"20","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507604622,"pid":471169,"hostname":"ubuntu","timestamp":1761507604622,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.994791666666667,"__token":"21","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507604630,"pid":471169,"hostname":"ubuntu","timestamp":1761507604630,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.973958333333333,"__token":"22","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507604642,"pid":471169,"hostname":"ubuntu","timestamp":1761507604642,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.953125,"__token":"23","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507604647,"pid":471169,"hostname":"ubuntu","timestamp":1761507604647,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.942708333333333,"__token":"24","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507604655,"pid":471169,"hostname":"ubuntu","timestamp":1761507604655,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.901041666666667,"__token":"25","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507604662,"pid":471169,"hostname":"ubuntu","timestamp":1761507604662,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.869791666666667,"__token":"26","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507604671,"pid":471169,"hostname":"ubuntu","timestamp":1761507604671,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.838541666666667,"__token":"27","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507604680,"pid":471169,"hostname":"ubuntu","timestamp":1761507604680,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.796875,"__token":"28","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507604687,"pid":471169,"hostname":"ubuntu","timestamp":1761507604687,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.744791666666667,"__token":"29","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507604695,"pid":471169,"hostname":"ubuntu","timestamp":1761507604695,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.713541666666667,"__token":"30","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507604702,"pid":471169,"hostname":"ubuntu","timestamp":1761507604702,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.692708333333333,"__token":"31","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507604711,"pid":471169,"hostname":"ubuntu","timestamp":1761507604711,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.651041666666667,"__token":"32","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507604719,"pid":471169,"hostname":"ubuntu","timestamp":1761507604719,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.619791666666667,"__token":"33","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507604731,"pid":471169,"hostname":"ubuntu","timestamp":1761507604731,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.578125,"__token":"34","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507604736,"pid":471169,"hostname":"ubuntu","timestamp":1761507604736,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.557291666666667,"__token":"35","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507604752,"pid":471169,"hostname":"ubuntu","timestamp":1761507604752,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.536458333333333,"__token":"36","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507604753,"pid":471169,"hostname":"ubuntu","timestamp":1761507604753,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.515625,"__token":"37","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507604766,"pid":471169,"hostname":"ubuntu","timestamp":1761507604766,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.505208333333333,"__token":"38","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507604798,"pid":471169,"hostname":"ubuntu","timestamp":1761507604798,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.484375,"__token":"39","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605231,"pid":471169,"hostname":"ubuntu","timestamp":1761507605231,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.484375,"__token":"40","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605270,"pid":471169,"hostname":"ubuntu","timestamp":1761507605270,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.473958333333333,"__token":"41","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605278,"pid":471169,"hostname":"ubuntu","timestamp":1761507605278,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.442708333333333,"__token":"42","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605286,"pid":471169,"hostname":"ubuntu","timestamp":1761507605286,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.411458333333333,"__token":"43","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605294,"pid":471169,"hostname":"ubuntu","timestamp":1761507605294,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.390625,"__token":"44","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605302,"pid":471169,"hostname":"ubuntu","timestamp":1761507605302,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.359375,"__token":"45","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605312,"pid":471169,"hostname":"ubuntu","timestamp":1761507605312,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.307291666666667,"__token":"46","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605318,"pid":471169,"hostname":"ubuntu","timestamp":1761507605318,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.223958333333333,"__token":"47","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605328,"pid":471169,"hostname":"ubuntu","timestamp":1761507605328,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.161458333333333,"__token":"48","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605335,"pid":471169,"hostname":"ubuntu","timestamp":1761507605335,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.088541666666667,"__token":"49","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605343,"pid":471169,"hostname":"ubuntu","timestamp":1761507605343,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.026041666666667,"__token":"50","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605350,"pid":471169,"hostname":"ubuntu","timestamp":1761507605350,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.953125,"__token":"51","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605366,"pid":471169,"hostname":"ubuntu","timestamp":1761507605366,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.911458333333333,"__token":"52","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605368,"pid":471169,"hostname":"ubuntu","timestamp":1761507605368,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.859375,"__token":"53","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605419,"pid":471169,"hostname":"ubuntu","timestamp":1761507605419,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.828125,"__token":"54","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605419,"pid":471169,"hostname":"ubuntu","timestamp":1761507605419,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.796875,"__token":"55","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605421,"pid":471169,"hostname":"ubuntu","timestamp":1761507605421,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.776041666666667,"__token":"56","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605423,"pid":471169,"hostname":"ubuntu","timestamp":1761507605423,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.765625,"__token":"57","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605423,"pid":471169,"hostname":"ubuntu","timestamp":1761507605423,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.755208333333333,"__token":"58","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605424,"pid":471169,"hostname":"ubuntu","timestamp":1761507605424,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.744791666666667,"__token":"59","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605432,"pid":471169,"hostname":"ubuntu","timestamp":1761507605432,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.734375,"__token":"60","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605448,"pid":471169,"hostname":"ubuntu","timestamp":1761507605448,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.723958333333333,"__token":"61","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605512,"pid":471169,"hostname":"ubuntu","timestamp":1761507605512,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.713541666666667,"__token":"62","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605512,"pid":471169,"hostname":"ubuntu","timestamp":1761507605512,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.703125,"__token":"63","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605534,"pid":471169,"hostname":"ubuntu","timestamp":1761507605534,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.682291666666667,"__token":"64","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605588,"pid":471169,"hostname":"ubuntu","timestamp":1761507605588,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.671875,"__token":"65","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605588,"pid":471169,"hostname":"ubuntu","timestamp":1761507605588,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.661458333333333,"__token":"66","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605588,"pid":471169,"hostname":"ubuntu","timestamp":1761507605588,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.651041666666667,"__token":"67","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605588,"pid":471169,"hostname":"ubuntu","timestamp":1761507605588,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.630208333333333,"__token":"68","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605617,"pid":471169,"hostname":"ubuntu","timestamp":1761507605617,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.619791666666667,"__token":"69","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605626,"pid":471169,"hostname":"ubuntu","timestamp":1761507605626,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.609375,"__token":"70","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605626,"pid":471169,"hostname":"ubuntu","timestamp":1761507605626,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.598958333333333,"__token":"71","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605627,"pid":471169,"hostname":"ubuntu","timestamp":1761507605627,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.567708333333333,"__token":"72","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605631,"pid":471169,"hostname":"ubuntu","timestamp":1761507605631,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.526041666666667,"__token":"73","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605638,"pid":471169,"hostname":"ubuntu","timestamp":1761507605638,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.494791666666667,"__token":"74","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605647,"pid":471169,"hostname":"ubuntu","timestamp":1761507605647,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.442708333333333,"__token":"75","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605671,"pid":471169,"hostname":"ubuntu","timestamp":1761507605671,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.401041666666667,"__token":"76","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605672,"pid":471169,"hostname":"ubuntu","timestamp":1761507605672,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.359375,"__token":"77","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605672,"pid":471169,"hostname":"ubuntu","timestamp":1761507605672,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.328125,"__token":"78","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605680,"pid":471169,"hostname":"ubuntu","timestamp":1761507605680,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.296875,"__token":"79","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605686,"pid":471169,"hostname":"ubuntu","timestamp":1761507605686,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.265625,"__token":"80","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605703,"pid":471169,"hostname":"ubuntu","timestamp":1761507605703,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.234375,"__token":"81","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605720,"pid":471169,"hostname":"ubuntu","timestamp":1761507605720,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.203125,"__token":"82","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605734,"pid":471169,"hostname":"ubuntu","timestamp":1761507605734,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.192708333333333,"__token":"83","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605763,"pid":471169,"hostname":"ubuntu","timestamp":1761507605763,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.171875,"__token":"84","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605766,"pid":471169,"hostname":"ubuntu","timestamp":1761507605766,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.151041666666667,"__token":"85","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605783,"pid":471169,"hostname":"ubuntu","timestamp":1761507605783,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.140625,"__token":"86","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605800,"pid":471169,"hostname":"ubuntu","timestamp":1761507605800,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.130208333333333,"__token":"87","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605807,"pid":471169,"hostname":"ubuntu","timestamp":1761507605807,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.109375,"__token":"88","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605814,"pid":471169,"hostname":"ubuntu","timestamp":1761507605814,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.098958333333333,"__token":"89","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605832,"pid":471169,"hostname":"ubuntu","timestamp":1761507605832,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.088541666666667,"__token":"90","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605838,"pid":471169,"hostname":"ubuntu","timestamp":1761507605838,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.078125,"__token":"91","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605864,"pid":471169,"hostname":"ubuntu","timestamp":1761507605864,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.067708333333333,"__token":"92","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605870,"pid":471169,"hostname":"ubuntu","timestamp":1761507605870,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.057291666666667,"__token":"93","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605878,"pid":471169,"hostname":"ubuntu","timestamp":1761507605878,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.046875,"__token":"94","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605896,"pid":471169,"hostname":"ubuntu","timestamp":1761507605896,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.026041666666667,"__token":"95","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605903,"pid":471169,"hostname":"ubuntu","timestamp":1761507605903,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.015625,"__token":"96","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605910,"pid":471169,"hostname":"ubuntu","timestamp":1761507605910,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.9947916666666665,"__token":"97","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605918,"pid":471169,"hostname":"ubuntu","timestamp":1761507605918,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.9635416666666665,"__token":"98","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605929,"pid":471169,"hostname":"ubuntu","timestamp":1761507605929,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.9427083333333335,"__token":"99","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605936,"pid":471169,"hostname":"ubuntu","timestamp":1761507605936,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.921875,"__token":"100","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605945,"pid":471169,"hostname":"ubuntu","timestamp":1761507605945,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.9010416666666665,"__token":"101","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605950,"pid":471169,"hostname":"ubuntu","timestamp":1761507605950,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.890625,"__token":"102","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605964,"pid":471169,"hostname":"ubuntu","timestamp":1761507605964,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.8697916666666665,"__token":"103","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605966,"pid":471169,"hostname":"ubuntu","timestamp":1761507605966,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.859375,"__token":"104","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507605997,"pid":471169,"hostname":"ubuntu","timestamp":1761507605997,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.8489583333333335,"__token":"105","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606001,"pid":471169,"hostname":"ubuntu","timestamp":1761507606001,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.8385416666666665,"__token":"106","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606001,"pid":471169,"hostname":"ubuntu","timestamp":1761507606001,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.828125,"__token":"107","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606006,"pid":471169,"hostname":"ubuntu","timestamp":1761507606006,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.8177083333333335,"__token":"108","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606016,"pid":471169,"hostname":"ubuntu","timestamp":1761507606016,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.8072916666666665,"__token":"109","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606066,"pid":471169,"hostname":"ubuntu","timestamp":1761507606066,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.796875,"__token":"110","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606066,"pid":471169,"hostname":"ubuntu","timestamp":1761507606066,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.765625,"__token":"111","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606070,"pid":471169,"hostname":"ubuntu","timestamp":1761507606070,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.7552083333333335,"__token":"112","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606071,"pid":471169,"hostname":"ubuntu","timestamp":1761507606071,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.734375,"__token":"113","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606072,"pid":471169,"hostname":"ubuntu","timestamp":1761507606072,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.7239583333333335,"__token":"114","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606080,"pid":471169,"hostname":"ubuntu","timestamp":1761507606080,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.7135416666666665,"__token":"115","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606086,"pid":471169,"hostname":"ubuntu","timestamp":1761507606086,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.6927083333333335,"__token":"116","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606102,"pid":471169,"hostname":"ubuntu","timestamp":1761507606102,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.6822916666666665,"__token":"117","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606113,"pid":471169,"hostname":"ubuntu","timestamp":1761507606113,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.6614583333333335,"__token":"118","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606119,"pid":471169,"hostname":"ubuntu","timestamp":1761507606119,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.6302083333333335,"__token":"119","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606131,"pid":471169,"hostname":"ubuntu","timestamp":1761507606131,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.5885416666666665,"__token":"120","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606136,"pid":471169,"hostname":"ubuntu","timestamp":1761507606136,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.546875,"__token":"121","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606143,"pid":471169,"hostname":"ubuntu","timestamp":1761507606143,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.4739583333333335,"__token":"122","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606151,"pid":471169,"hostname":"ubuntu","timestamp":1761507606151,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.421875,"__token":"123","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606159,"pid":471169,"hostname":"ubuntu","timestamp":1761507606159,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.3489583333333335,"__token":"124","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606167,"pid":471169,"hostname":"ubuntu","timestamp":1761507606167,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.296875,"__token":"125","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606188,"pid":471169,"hostname":"ubuntu","timestamp":1761507606188,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.2552083333333335,"__token":"126","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606189,"pid":471169,"hostname":"ubuntu","timestamp":1761507606189,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.1927083333333335,"__token":"127","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606199,"pid":471169,"hostname":"ubuntu","timestamp":1761507606199,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.1510416666666665,"__token":"128","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606200,"pid":471169,"hostname":"ubuntu","timestamp":1761507606200,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.1302083333333335,"__token":"129","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606208,"pid":471169,"hostname":"ubuntu","timestamp":1761507606208,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.109375,"__token":"130","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606215,"pid":471169,"hostname":"ubuntu","timestamp":1761507606215,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.078125,"__token":"131","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606225,"pid":471169,"hostname":"ubuntu","timestamp":1761507606225,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.0677083333333335,"__token":"132","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606248,"pid":471169,"hostname":"ubuntu","timestamp":1761507606248,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.0572916666666665,"__token":"133","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606248,"pid":471169,"hostname":"ubuntu","timestamp":1761507606248,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.046875,"__token":"134","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606269,"pid":471169,"hostname":"ubuntu","timestamp":1761507606269,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.0364583333333335,"__token":"135","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606289,"pid":471169,"hostname":"ubuntu","timestamp":1761507606289,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.0260416666666665,"__token":"136","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606367,"pid":471169,"hostname":"ubuntu","timestamp":1761507606367,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.015625,"__token":"137","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606414,"pid":471169,"hostname":"ubuntu","timestamp":1761507606414,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.9947916666666665,"__token":"138","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606454,"pid":471169,"hostname":"ubuntu","timestamp":1761507606454,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.984375,"__token":"139","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606496,"pid":471169,"hostname":"ubuntu","timestamp":1761507606496,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.9635416666666665,"__token":"140","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606518,"pid":471169,"hostname":"ubuntu","timestamp":1761507606518,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.953125,"__token":"141","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606546,"pid":471169,"hostname":"ubuntu","timestamp":1761507606546,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.9322916666666665,"__token":"142","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507606599,"pid":471169,"hostname":"ubuntu","timestamp":1761507606599,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.921875,"__token":"143","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607182,"pid":471169,"hostname":"ubuntu","timestamp":1761507607182,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.9114583333333335,"__token":"144","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607190,"pid":471169,"hostname":"ubuntu","timestamp":1761507607190,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.890625,"__token":"145","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607198,"pid":471169,"hostname":"ubuntu","timestamp":1761507607198,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.859375,"__token":"146","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607206,"pid":471169,"hostname":"ubuntu","timestamp":1761507607206,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.8489583333333335,"__token":"147","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607214,"pid":471169,"hostname":"ubuntu","timestamp":1761507607214,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.828125,"__token":"148","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607223,"pid":471169,"hostname":"ubuntu","timestamp":1761507607223,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.8177083333333335,"__token":"149","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607231,"pid":471169,"hostname":"ubuntu","timestamp":1761507607231,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.7864583333333335,"__token":"150","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607239,"pid":471169,"hostname":"ubuntu","timestamp":1761507607239,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.7552083333333335,"__token":"151","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607247,"pid":471169,"hostname":"ubuntu","timestamp":1761507607247,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.7239583333333335,"__token":"152","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607255,"pid":471169,"hostname":"ubuntu","timestamp":1761507607255,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.6927083333333335,"__token":"153","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607263,"pid":471169,"hostname":"ubuntu","timestamp":1761507607263,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.671875,"__token":"154","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607271,"pid":471169,"hostname":"ubuntu","timestamp":1761507607271,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.640625,"__token":"155","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607281,"pid":471169,"hostname":"ubuntu","timestamp":1761507607281,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.6302083333333335,"__token":"156","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607297,"pid":471169,"hostname":"ubuntu","timestamp":1761507607297,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.609375,"__token":"157","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607312,"pid":471169,"hostname":"ubuntu","timestamp":1761507607312,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.5989583333333335,"__token":"158","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607391,"pid":471169,"hostname":"ubuntu","timestamp":1761507607391,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.578125,"__token":"159","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607422,"pid":471169,"hostname":"ubuntu","timestamp":1761507607422,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.5677083333333335,"__token":"160","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607438,"pid":471169,"hostname":"ubuntu","timestamp":1761507607438,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.546875,"__token":"161","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607462,"pid":471169,"hostname":"ubuntu","timestamp":1761507607462,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.5364583333333335,"__token":"162","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607469,"pid":471169,"hostname":"ubuntu","timestamp":1761507607469,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.515625,"__token":"163","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607489,"pid":471169,"hostname":"ubuntu","timestamp":1761507607489,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.5052083333333335,"__token":"164","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607500,"pid":471169,"hostname":"ubuntu","timestamp":1761507607500,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.484375,"__token":"165","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607534,"pid":471169,"hostname":"ubuntu","timestamp":1761507607534,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.4739583333333335,"__token":"166","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607591,"pid":471169,"hostname":"ubuntu","timestamp":1761507607591,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.453125,"__token":"167","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607622,"pid":471169,"hostname":"ubuntu","timestamp":1761507607622,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.4427083333333335,"__token":"168","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607638,"pid":471169,"hostname":"ubuntu","timestamp":1761507607638,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.421875,"__token":"169","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607647,"pid":471169,"hostname":"ubuntu","timestamp":1761507607647,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.4114583333333335,"__token":"170","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607654,"pid":471169,"hostname":"ubuntu","timestamp":1761507607654,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.390625,"__token":"171","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607664,"pid":471169,"hostname":"ubuntu","timestamp":1761507607664,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.3697916666666665,"__token":"172","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607690,"pid":471169,"hostname":"ubuntu","timestamp":1761507607690,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.3489583333333335,"__token":"173","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607704,"pid":471169,"hostname":"ubuntu","timestamp":1761507607704,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.3385416666666665,"__token":"174","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607705,"pid":471169,"hostname":"ubuntu","timestamp":1761507607705,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.3177083333333335,"__token":"175","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607706,"pid":471169,"hostname":"ubuntu","timestamp":1761507607706,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.296875,"__token":"176","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607706,"pid":471169,"hostname":"ubuntu","timestamp":1761507607706,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.2760416666666665,"__token":"177","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607715,"pid":471169,"hostname":"ubuntu","timestamp":1761507607715,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.265625,"__token":"178","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607718,"pid":471169,"hostname":"ubuntu","timestamp":1761507607718,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.2552083333333335,"__token":"179","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607728,"pid":471169,"hostname":"ubuntu","timestamp":1761507607728,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.2447916666666665,"__token":"180","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607822,"pid":471169,"hostname":"ubuntu","timestamp":1761507607822,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.234375,"__token":"181","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607830,"pid":471169,"hostname":"ubuntu","timestamp":1761507607830,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.2239583333333335,"__token":"182","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607838,"pid":471169,"hostname":"ubuntu","timestamp":1761507607838,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.2135416666666665,"__token":"183","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607846,"pid":471169,"hostname":"ubuntu","timestamp":1761507607846,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.1927083333333335,"__token":"184","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607854,"pid":471169,"hostname":"ubuntu","timestamp":1761507607854,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.1822916666666665,"__token":"185","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607862,"pid":471169,"hostname":"ubuntu","timestamp":1761507607862,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.171875,"__token":"186","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607882,"pid":471169,"hostname":"ubuntu","timestamp":1761507607882,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.1614583333333335,"__token":"187","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607897,"pid":471169,"hostname":"ubuntu","timestamp":1761507607897,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.1510416666666665,"__token":"188","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607902,"pid":471169,"hostname":"ubuntu","timestamp":1761507607902,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.1302083333333335,"__token":"189","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607935,"pid":471169,"hostname":"ubuntu","timestamp":1761507607935,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.1197916666666665,"__token":"190","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607943,"pid":471169,"hostname":"ubuntu","timestamp":1761507607943,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.109375,"__token":"191","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607950,"pid":471169,"hostname":"ubuntu","timestamp":1761507607950,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.0989583333333335,"__token":"192","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607966,"pid":471169,"hostname":"ubuntu","timestamp":1761507607966,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.0885416666666665,"__token":"193","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607982,"pid":471169,"hostname":"ubuntu","timestamp":1761507607982,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.078125,"__token":"194","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507607998,"pid":471169,"hostname":"ubuntu","timestamp":1761507607998,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.0677083333333335,"__token":"195","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507608022,"pid":471169,"hostname":"ubuntu","timestamp":1761507608022,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.0572916666666665,"__token":"196","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507608039,"pid":471169,"hostname":"ubuntu","timestamp":1761507608039,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.046875,"__token":"197","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507608047,"pid":471169,"hostname":"ubuntu","timestamp":1761507608047,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.0364583333333335,"__token":"198","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507608064,"pid":471169,"hostname":"ubuntu","timestamp":1761507608064,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.0260416666666665,"__token":"199","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507608071,"pid":471169,"hostname":"ubuntu","timestamp":1761507608071,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.015625,"__token":"200","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507608087,"pid":471169,"hostname":"ubuntu","timestamp":1761507608087,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.0052083333333335,"__token":"201","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507608103,"pid":471169,"hostname":"ubuntu","timestamp":1761507608103,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.9947916666666667,"__token":"202","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507608127,"pid":471169,"hostname":"ubuntu","timestamp":1761507608127,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.984375,"__token":"203","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507608159,"pid":471169,"hostname":"ubuntu","timestamp":1761507608159,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.9739583333333333,"__token":"204","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507608166,"pid":471169,"hostname":"ubuntu","timestamp":1761507608166,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.953125,"__token":"205","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507608175,"pid":471169,"hostname":"ubuntu","timestamp":1761507608175,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.9427083333333333,"__token":"206","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507608183,"pid":471169,"hostname":"ubuntu","timestamp":1761507608183,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.921875,"__token":"207","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507608192,"pid":471169,"hostname":"ubuntu","timestamp":1761507608192,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.9010416666666667,"__token":"208","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507608199,"pid":471169,"hostname":"ubuntu","timestamp":1761507608199,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.8802083333333333,"__token":"209","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507608209,"pid":471169,"hostname":"ubuntu","timestamp":1761507608209,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.8489583333333333,"__token":"210","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507608215,"pid":471169,"hostname":"ubuntu","timestamp":1761507608215,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.828125,"__token":"211","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507608225,"pid":471169,"hostname":"ubuntu","timestamp":1761507608225,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.8072916666666667,"__token":"212","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507608232,"pid":471169,"hostname":"ubuntu","timestamp":1761507608232,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.796875,"__token":"213","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507608239,"pid":471169,"hostname":"ubuntu","timestamp":1761507608239,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.7760416666666667,"__token":"214","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507608304,"pid":471169,"hostname":"ubuntu","timestamp":1761507608304,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.765625,"__token":"215","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507608406,"pid":471169,"hostname":"ubuntu","timestamp":1761507608406,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.7447916666666667,"__token":"216","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507608448,"pid":471169,"hostname":"ubuntu","timestamp":1761507608448,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.734375,"__token":"217","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507608966,"pid":471169,"hostname":"ubuntu","timestamp":1761507608966,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.7135416666666667,"__token":"218","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507608995,"pid":471169,"hostname":"ubuntu","timestamp":1761507608995,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.703125,"__token":"219","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609007,"pid":471169,"hostname":"ubuntu","timestamp":1761507609007,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.6822916666666667,"__token":"220","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609072,"pid":471169,"hostname":"ubuntu","timestamp":1761507609072,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.671875,"__token":"221","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609102,"pid":471169,"hostname":"ubuntu","timestamp":1761507609102,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.6614583333333333,"__token":"222","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609111,"pid":471169,"hostname":"ubuntu","timestamp":1761507609111,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.6510416666666667,"__token":"223","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609118,"pid":471169,"hostname":"ubuntu","timestamp":1761507609118,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.640625,"__token":"224","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609143,"pid":471169,"hostname":"ubuntu","timestamp":1761507609143,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.6302083333333333,"__token":"225","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609161,"pid":471169,"hostname":"ubuntu","timestamp":1761507609161,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.609375,"__token":"226","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609202,"pid":471169,"hostname":"ubuntu","timestamp":1761507609202,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.5885416666666667,"__token":"227","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609202,"pid":471169,"hostname":"ubuntu","timestamp":1761507609202,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.5885416666666667,"__token":"228","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609204,"pid":471169,"hostname":"ubuntu","timestamp":1761507609204,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.578125,"__token":"229","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609239,"pid":471169,"hostname":"ubuntu","timestamp":1761507609239,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.5677083333333333,"__token":"230","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609246,"pid":471169,"hostname":"ubuntu","timestamp":1761507609246,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.5572916666666667,"__token":"231","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609366,"pid":471169,"hostname":"ubuntu","timestamp":1761507609366,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.546875,"__token":"232","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609407,"pid":471169,"hostname":"ubuntu","timestamp":1761507609407,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.5364583333333333,"__token":"233","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609423,"pid":471169,"hostname":"ubuntu","timestamp":1761507609423,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.5260416666666667,"__token":"234","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609455,"pid":471169,"hostname":"ubuntu","timestamp":1761507609455,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.515625,"__token":"235","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609471,"pid":471169,"hostname":"ubuntu","timestamp":1761507609471,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.5052083333333333,"__token":"236","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609480,"pid":471169,"hostname":"ubuntu","timestamp":1761507609480,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.4947916666666667,"__token":"237","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609498,"pid":471169,"hostname":"ubuntu","timestamp":1761507609498,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.484375,"__token":"238","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609512,"pid":471169,"hostname":"ubuntu","timestamp":1761507609512,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.4739583333333333,"__token":"239","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609528,"pid":471169,"hostname":"ubuntu","timestamp":1761507609528,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.4635416666666667,"__token":"240","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609544,"pid":471169,"hostname":"ubuntu","timestamp":1761507609544,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.453125,"__token":"241","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609550,"pid":471169,"hostname":"ubuntu","timestamp":1761507609550,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.4427083333333333,"__token":"242","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609559,"pid":471169,"hostname":"ubuntu","timestamp":1761507609559,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.421875,"__token":"243","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609577,"pid":471169,"hostname":"ubuntu","timestamp":1761507609577,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.4010416666666667,"__token":"244","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609583,"pid":471169,"hostname":"ubuntu","timestamp":1761507609583,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.390625,"__token":"245","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609596,"pid":471169,"hostname":"ubuntu","timestamp":1761507609596,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.3697916666666667,"__token":"246","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609599,"pid":471169,"hostname":"ubuntu","timestamp":1761507609599,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.359375,"__token":"247","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609616,"pid":471169,"hostname":"ubuntu","timestamp":1761507609616,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.3489583333333333,"__token":"248","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609655,"pid":471169,"hostname":"ubuntu","timestamp":1761507609655,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.3385416666666667,"__token":"249","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609665,"pid":471169,"hostname":"ubuntu","timestamp":1761507609665,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.328125,"__token":"250","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609666,"pid":471169,"hostname":"ubuntu","timestamp":1761507609666,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.3177083333333333,"__token":"251","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609719,"pid":471169,"hostname":"ubuntu","timestamp":1761507609719,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.3072916666666667,"__token":"252","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609727,"pid":471169,"hostname":"ubuntu","timestamp":1761507609727,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.296875,"__token":"253","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609902,"pid":471169,"hostname":"ubuntu","timestamp":1761507609902,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.2864583333333333,"__token":"254","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609911,"pid":471169,"hostname":"ubuntu","timestamp":1761507609911,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.2447916666666667,"__token":"255","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609918,"pid":471169,"hostname":"ubuntu","timestamp":1761507609918,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.2135416666666667,"__token":"256","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609928,"pid":471169,"hostname":"ubuntu","timestamp":1761507609928,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.1822916666666667,"__token":"257","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609934,"pid":471169,"hostname":"ubuntu","timestamp":1761507609934,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.1302083333333333,"__token":"258","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609944,"pid":471169,"hostname":"ubuntu","timestamp":1761507609944,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.0989583333333333,"__token":"259","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609951,"pid":471169,"hostname":"ubuntu","timestamp":1761507609951,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.0677083333333333,"__token":"260","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609959,"pid":471169,"hostname":"ubuntu","timestamp":1761507609959,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.0572916666666667,"__token":"261","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609966,"pid":471169,"hostname":"ubuntu","timestamp":1761507609966,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.0364583333333333,"__token":"262","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609979,"pid":471169,"hostname":"ubuntu","timestamp":1761507609979,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.0260416666666667,"__token":"263","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507609983,"pid":471169,"hostname":"ubuntu","timestamp":1761507609983,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.015625,"__token":"264","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507610231,"pid":471169,"hostname":"ubuntu","timestamp":1761507610231,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.0052083333333333,"__token":"265","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507610255,"pid":471169,"hostname":"ubuntu","timestamp":1761507610255,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":0.984375,"__token":"266","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507610319,"pid":471169,"hostname":"ubuntu","timestamp":1761507610319,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":0.9739583333333334,"__token":"267","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507610423,"pid":471169,"hostname":"ubuntu","timestamp":1761507610423,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":0.9635416666666666,"__token":"268","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507610543,"pid":471169,"hostname":"ubuntu","timestamp":1761507610543,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":0.953125,"__token":"269","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507610550,"pid":471169,"hostname":"ubuntu","timestamp":1761507610550,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":0.953125,"__token":"270","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507610592,"pid":471169,"hostname":"ubuntu","timestamp":1761507610592,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":0.9427083333333334,"__token":"271","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507610598,"pid":471169,"hostname":"ubuntu","timestamp":1761507610598,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":0.9427083333333334,"__token":"272","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
{"level":30,"time":1761507610622,"pid":471169,"hostname":"ubuntu","timestamp":1761507610622,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":0.921875,"__token":"273","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}

View File

@ -0,0 +1 @@
{"level":30,"time":1761502437711,"pid":471169,"hostname":"ubuntu","timestamp":1761502437711,"socketId":"Eb4alu4X-wXwL0nzAAAz","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"Eb4alu4X-wXwL0nzAAAz","__senderName":"Alicer-Eb4a"},"msg":"action_received"}

View File

@ -0,0 +1,11 @@
{"level":30,"time":1761491772326,"pid":347500,"hostname":"ubuntu","timestamp":1761491772325,"roomName":"sessao-oli2m","socketId":"ioh05ccCOkkbBJ3JAAAB","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"ioh05ccCOkkbBJ3JAAAB","__senderName":"Alicer-ioh0"},"msg":"action_received"}
{"level":30,"time":1761491786840,"pid":347500,"hostname":"ubuntu","timestamp":1761491786840,"roomName":"sessao-4gv3w","socketId":"LbqzYFy-7o7cOWjrAAAF","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"LbqzYFy-7o7cOWjrAAAF","__senderName":"Alicer-Lbqz"},"msg":"action_received"}
{"level":30,"time":1761491804880,"pid":347500,"hostname":"ubuntu","timestamp":1761491804880,"roomName":"sessao-oli2m","socketId":"_hBGMFgq3FYLMXIPAAAH","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"_hBGMFgq3FYLMXIPAAAH","__senderName":"Alicer-_hBG"},"msg":"action_received"}
{"level":30,"time":1761491814257,"pid":347500,"hostname":"ubuntu","timestamp":1761491814257,"roomName":"sessao-oli2m","socketId":"_hBGMFgq3FYLMXIPAAAH","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/909beat01.ogg","trackId":1761491736229,"startTimeInSeconds":0.5,"clipId":"967b8f5c-65f2-4157-99e2-27ffee81b41f","name":"909beat01.ogg","__token":"2","__senderId":"_hBGMFgq3FYLMXIPAAAH","__senderName":"Alicer-_hBG"},"msg":"action_received"}
{"level":30,"time":1761491815639,"pid":347500,"hostname":"ubuntu","timestamp":1761491815639,"roomName":"sessao-oli2m","socketId":"_hBGMFgq3FYLMXIPAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"967b8f5c-65f2-4157-99e2-27ffee81b41f","props":{"trackId":1761491736229,"startTimeInSeconds":0},"__token":"3","__senderId":"_hBGMFgq3FYLMXIPAAAH","__senderName":"Alicer-_hBG"},"msg":"action_received"}
{"level":30,"time":1761491832687,"pid":347500,"hostname":"ubuntu","timestamp":1761491832687,"roomName":"sessao-oli2m","socketId":"ioh05ccCOkkbBJ3JAAAB","action":{"type":"STOP_PLAYBACK","__token":"2","__senderId":"ioh05ccCOkkbBJ3JAAAB","__senderName":"Alicer-ioh0","scheduleAtServerMs":1761491832873},"msg":"action_received"}
{"level":30,"time":1761491834741,"pid":347500,"hostname":"ubuntu","timestamp":1761491834741,"roomName":"sessao-oli2m","socketId":"yQZhQxD_wL6ARs0PAAAJ","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"yQZhQxD_wL6ARs0PAAAJ","__senderName":"Alicer-yQZh"},"msg":"action_received"}
{"level":30,"time":1761491834768,"pid":347500,"hostname":"ubuntu","timestamp":1761491834768,"roomName":"sessao-oli2m","socketId":"_hBGMFgq3FYLMXIPAAAH","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":1761491736229,"name":"Pista de Áudio 1"}],"clips":[{"id":"967b8f5c-65f2-4157-99e2-27ffee81b41f","trackId":1761491736229,"name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375}]},"__target":"yQZhQxD_wL6ARs0PAAAJ","__token":"4","__senderId":"_hBGMFgq3FYLMXIPAAAH","__senderName":"Alicer-_hBG"},"msg":"action_received"}
{"level":30,"time":1761491842448,"pid":347500,"hostname":"ubuntu","timestamp":1761491842448,"roomName":"sessao-oli2m","socketId":"yQZhQxD_wL6ARs0PAAAJ","action":{"type":"TOGGLE_NOTE","trackIndex":0,"patternIndex":0,"stepIndex":0,"isActive":true,"__token":"2","__senderId":"yQZhQxD_wL6ARs0PAAAJ","__senderName":"Alicer-yQZh"},"msg":"action_received"}
{"level":30,"time":1761491860049,"pid":347500,"hostname":"ubuntu","timestamp":1761491860049,"roomName":"sessao-4gv3w","socketId":"5TrjLq6FKAYwtT8OAAAL","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"5TrjLq6FKAYwtT8OAAAL","__senderName":"Alicer-5Trj"},"msg":"action_received"}
{"level":30,"time":1761491864309,"pid":347500,"hostname":"ubuntu","timestamp":1761491864309,"roomName":"sessao-4gv3w","socketId":"H5nIWXJrBdIpKu1fAAAN","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"H5nIWXJrBdIpKu1fAAAN","__senderName":"Alicer-H5nI"},"msg":"action_received"}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

1
assets/js/creations/server/node_modules/.bin/pino generated vendored Symbolic link
View File

@ -0,0 +1 @@
../pino/bin.js

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,22 @@
MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@ -0,0 +1,19 @@
# @babel/runtime
> babel's modular runtime helpers
See our website [@babel/runtime](https://babeljs.io/docs/babel-runtime) for more information.
## Install
Using npm:
```sh
npm install --save @babel/runtime
```
or using yarn:
```sh
yarn add @babel/runtime
```

View File

@ -0,0 +1,4 @@
function _AwaitValue(t) {
this.wrapped = t;
}
module.exports = _AwaitValue, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,4 @@
function _OverloadYield(e, d) {
this.v = e, this.k = d;
}
module.exports = _OverloadYield, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,9 @@
function _applyDecoratedDescriptor(i, e, r, n, l) {
var a = {};
return Object.keys(n).forEach(function (i) {
a[i] = n[i];
}), a.enumerable = !!a.enumerable, a.configurable = !!a.configurable, ("value" in a || a.initializer) && (a.writable = !0), a = r.slice().reverse().reduce(function (r, n) {
return n(i, e, r) || r;
}, a), l && void 0 !== a.initializer && (a.value = a.initializer ? a.initializer.call(l) : void 0, a.initializer = void 0), void 0 === a.initializer ? (Object.defineProperty(i, e, a), null) : a;
}
module.exports = _applyDecoratedDescriptor, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,236 @@
var _typeof = require("./typeof.js")["default"];
var setFunctionName = require("./setFunctionName.js");
var toPropertyKey = require("./toPropertyKey.js");
function old_createMetadataMethodsForProperty(e, t, a, r) {
return {
getMetadata: function getMetadata(o) {
old_assertNotFinished(r, "getMetadata"), old_assertMetadataKey(o);
var i = e[o];
if (void 0 !== i) if (1 === t) {
var n = i["public"];
if (void 0 !== n) return n[a];
} else if (2 === t) {
var l = i["private"];
if (void 0 !== l) return l.get(a);
} else if (Object.hasOwnProperty.call(i, "constructor")) return i.constructor;
},
setMetadata: function setMetadata(o, i) {
old_assertNotFinished(r, "setMetadata"), old_assertMetadataKey(o);
var n = e[o];
if (void 0 === n && (n = e[o] = {}), 1 === t) {
var l = n["public"];
void 0 === l && (l = n["public"] = {}), l[a] = i;
} else if (2 === t) {
var s = n.priv;
void 0 === s && (s = n["private"] = new Map()), s.set(a, i);
} else n.constructor = i;
}
};
}
function old_convertMetadataMapToFinal(e, t) {
var a = e[Symbol.metadata || Symbol["for"]("Symbol.metadata")],
r = Object.getOwnPropertySymbols(t);
if (0 !== r.length) {
for (var o = 0; o < r.length; o++) {
var i = r[o],
n = t[i],
l = a ? a[i] : null,
s = n["public"],
c = l ? l["public"] : null;
s && c && Object.setPrototypeOf(s, c);
var d = n["private"];
if (d) {
var u = Array.from(d.values()),
f = l ? l["private"] : null;
f && (u = u.concat(f)), n["private"] = u;
}
l && Object.setPrototypeOf(n, l);
}
a && Object.setPrototypeOf(t, a), e[Symbol.metadata || Symbol["for"]("Symbol.metadata")] = t;
}
}
function old_createAddInitializerMethod(e, t) {
return function (a) {
old_assertNotFinished(t, "addInitializer"), old_assertCallable(a, "An initializer"), e.push(a);
};
}
function old_memberDec(e, t, a, r, o, i, n, l, s) {
var c;
switch (i) {
case 1:
c = "accessor";
break;
case 2:
c = "method";
break;
case 3:
c = "getter";
break;
case 4:
c = "setter";
break;
default:
c = "field";
}
var d,
u,
f = {
kind: c,
name: l ? "#" + t : toPropertyKey(t),
isStatic: n,
isPrivate: l
},
p = {
v: !1
};
if (0 !== i && (f.addInitializer = old_createAddInitializerMethod(o, p)), l) {
d = 2, u = Symbol(t);
var v = {};
0 === i ? (v.get = a.get, v.set = a.set) : 2 === i ? v.get = function () {
return a.value;
} : (1 !== i && 3 !== i || (v.get = function () {
return a.get.call(this);
}), 1 !== i && 4 !== i || (v.set = function (e) {
a.set.call(this, e);
})), f.access = v;
} else d = 1, u = t;
try {
return e(s, Object.assign(f, old_createMetadataMethodsForProperty(r, d, u, p)));
} finally {
p.v = !0;
}
}
function old_assertNotFinished(e, t) {
if (e.v) throw Error("attempted to call " + t + " after decoration was finished");
}
function old_assertMetadataKey(e) {
if ("symbol" != _typeof(e)) throw new TypeError("Metadata keys must be symbols, received: " + e);
}
function old_assertCallable(e, t) {
if ("function" != typeof e) throw new TypeError(t + " must be a function");
}
function old_assertValidReturnValue(e, t) {
var a = _typeof(t);
if (1 === e) {
if ("object" !== a || null === t) throw new TypeError("accessor decorators must return an object with get, set, or init properties or void 0");
void 0 !== t.get && old_assertCallable(t.get, "accessor.get"), void 0 !== t.set && old_assertCallable(t.set, "accessor.set"), void 0 !== t.init && old_assertCallable(t.init, "accessor.init"), void 0 !== t.initializer && old_assertCallable(t.initializer, "accessor.initializer");
} else if ("function" !== a) throw new TypeError((0 === e ? "field" : 10 === e ? "class" : "method") + " decorators must return a function or void 0");
}
function old_getInit(e) {
var t;
return null == (t = e.init) && (t = e.initializer) && void 0 !== console && console.warn(".initializer has been renamed to .init as of March 2022"), t;
}
function old_applyMemberDec(e, t, a, r, o, i, n, l, s) {
var c,
d,
u,
f,
p,
v,
y,
h = a[0];
if (n ? (0 === o || 1 === o ? (c = {
get: a[3],
set: a[4]
}, u = "get") : 3 === o ? (c = {
get: a[3]
}, u = "get") : 4 === o ? (c = {
set: a[3]
}, u = "set") : c = {
value: a[3]
}, 0 !== o && (1 === o && setFunctionName(a[4], "#" + r, "set"), setFunctionName(a[3], "#" + r, u))) : 0 !== o && (c = Object.getOwnPropertyDescriptor(t, r)), 1 === o ? f = {
get: c.get,
set: c.set
} : 2 === o ? f = c.value : 3 === o ? f = c.get : 4 === o && (f = c.set), "function" == typeof h) void 0 !== (p = old_memberDec(h, r, c, l, s, o, i, n, f)) && (old_assertValidReturnValue(o, p), 0 === o ? d = p : 1 === o ? (d = old_getInit(p), v = p.get || f.get, y = p.set || f.set, f = {
get: v,
set: y
}) : f = p);else for (var m = h.length - 1; m >= 0; m--) {
var b;
void 0 !== (p = old_memberDec(h[m], r, c, l, s, o, i, n, f)) && (old_assertValidReturnValue(o, p), 0 === o ? b = p : 1 === o ? (b = old_getInit(p), v = p.get || f.get, y = p.set || f.set, f = {
get: v,
set: y
}) : f = p, void 0 !== b && (void 0 === d ? d = b : "function" == typeof d ? d = [d, b] : d.push(b)));
}
if (0 === o || 1 === o) {
if (void 0 === d) d = function d(e, t) {
return t;
};else if ("function" != typeof d) {
var g = d;
d = function d(e, t) {
for (var a = t, r = 0; r < g.length; r++) a = g[r].call(e, a);
return a;
};
} else {
var _ = d;
d = function d(e, t) {
return _.call(e, t);
};
}
e.push(d);
}
0 !== o && (1 === o ? (c.get = f.get, c.set = f.set) : 2 === o ? c.value = f : 3 === o ? c.get = f : 4 === o && (c.set = f), n ? 1 === o ? (e.push(function (e, t) {
return f.get.call(e, t);
}), e.push(function (e, t) {
return f.set.call(e, t);
})) : 2 === o ? e.push(f) : e.push(function (e, t) {
return f.call(e, t);
}) : Object.defineProperty(t, r, c));
}
function old_applyMemberDecs(e, t, a, r, o) {
for (var i, n, l = new Map(), s = new Map(), c = 0; c < o.length; c++) {
var d = o[c];
if (Array.isArray(d)) {
var u,
f,
p,
v = d[1],
y = d[2],
h = d.length > 3,
m = v >= 5;
if (m ? (u = t, f = r, 0 != (v -= 5) && (p = n = n || [])) : (u = t.prototype, f = a, 0 !== v && (p = i = i || [])), 0 !== v && !h) {
var b = m ? s : l,
g = b.get(y) || 0;
if (!0 === g || 3 === g && 4 !== v || 4 === g && 3 !== v) throw Error("Attempted to decorate a public method/accessor that has the same name as a previously decorated public method/accessor. This is not currently supported by the decorators plugin. Property name was: " + y);
!g && v > 2 ? b.set(y, v) : b.set(y, !0);
}
old_applyMemberDec(e, u, d, y, v, m, h, f, p);
}
}
old_pushInitializers(e, i), old_pushInitializers(e, n);
}
function old_pushInitializers(e, t) {
t && e.push(function (e) {
for (var a = 0; a < t.length; a++) t[a].call(e);
return e;
});
}
function old_applyClassDecs(e, t, a, r) {
if (r.length > 0) {
for (var o = [], i = t, n = t.name, l = r.length - 1; l >= 0; l--) {
var s = {
v: !1
};
try {
var c = Object.assign({
kind: "class",
name: n,
addInitializer: old_createAddInitializerMethod(o, s)
}, old_createMetadataMethodsForProperty(a, 0, n, s)),
d = r[l](i, c);
} finally {
s.v = !0;
}
void 0 !== d && (old_assertValidReturnValue(10, d), i = d);
}
e.push(i, function () {
for (var e = 0; e < o.length; e++) o[e].call(i);
});
}
}
function applyDecs(e, t, a) {
var r = [],
o = {},
i = {};
return old_applyMemberDecs(r, e, i, o, t), old_convertMetadataMapToFinal(e.prototype, i), old_applyClassDecs(r, e, o, a), old_convertMetadataMapToFinal(e, o), r;
}
module.exports = applyDecs, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,184 @@
var _typeof = require("./typeof.js")["default"];
function applyDecs2203Factory() {
function createAddInitializerMethod(e, t) {
return function (r) {
!function (e) {
if (e.v) throw Error("attempted to call addInitializer after decoration was finished");
}(t), assertCallable(r, "An initializer"), e.push(r);
};
}
function memberDec(e, t, r, a, n, i, s, o) {
var c;
switch (n) {
case 1:
c = "accessor";
break;
case 2:
c = "method";
break;
case 3:
c = "getter";
break;
case 4:
c = "setter";
break;
default:
c = "field";
}
var l,
u,
f = {
kind: c,
name: s ? "#" + t : t,
"static": i,
"private": s
},
p = {
v: !1
};
0 !== n && (f.addInitializer = createAddInitializerMethod(a, p)), 0 === n ? s ? (l = r.get, u = r.set) : (l = function l() {
return this[t];
}, u = function u(e) {
this[t] = e;
}) : 2 === n ? l = function l() {
return r.value;
} : (1 !== n && 3 !== n || (l = function l() {
return r.get.call(this);
}), 1 !== n && 4 !== n || (u = function u(e) {
r.set.call(this, e);
})), f.access = l && u ? {
get: l,
set: u
} : l ? {
get: l
} : {
set: u
};
try {
return e(o, f);
} finally {
p.v = !0;
}
}
function assertCallable(e, t) {
if ("function" != typeof e) throw new TypeError(t + " must be a function");
}
function assertValidReturnValue(e, t) {
var r = _typeof(t);
if (1 === e) {
if ("object" !== r || null === t) throw new TypeError("accessor decorators must return an object with get, set, or init properties or void 0");
void 0 !== t.get && assertCallable(t.get, "accessor.get"), void 0 !== t.set && assertCallable(t.set, "accessor.set"), void 0 !== t.init && assertCallable(t.init, "accessor.init");
} else if ("function" !== r) throw new TypeError((0 === e ? "field" : 10 === e ? "class" : "method") + " decorators must return a function or void 0");
}
function applyMemberDec(e, t, r, a, n, i, s, o) {
var c,
l,
u,
f,
p,
d,
h = r[0];
if (s ? c = 0 === n || 1 === n ? {
get: r[3],
set: r[4]
} : 3 === n ? {
get: r[3]
} : 4 === n ? {
set: r[3]
} : {
value: r[3]
} : 0 !== n && (c = Object.getOwnPropertyDescriptor(t, a)), 1 === n ? u = {
get: c.get,
set: c.set
} : 2 === n ? u = c.value : 3 === n ? u = c.get : 4 === n && (u = c.set), "function" == typeof h) void 0 !== (f = memberDec(h, a, c, o, n, i, s, u)) && (assertValidReturnValue(n, f), 0 === n ? l = f : 1 === n ? (l = f.init, p = f.get || u.get, d = f.set || u.set, u = {
get: p,
set: d
}) : u = f);else for (var v = h.length - 1; v >= 0; v--) {
var g;
void 0 !== (f = memberDec(h[v], a, c, o, n, i, s, u)) && (assertValidReturnValue(n, f), 0 === n ? g = f : 1 === n ? (g = f.init, p = f.get || u.get, d = f.set || u.set, u = {
get: p,
set: d
}) : u = f, void 0 !== g && (void 0 === l ? l = g : "function" == typeof l ? l = [l, g] : l.push(g)));
}
if (0 === n || 1 === n) {
if (void 0 === l) l = function l(e, t) {
return t;
};else if ("function" != typeof l) {
var y = l;
l = function l(e, t) {
for (var r = t, a = 0; a < y.length; a++) r = y[a].call(e, r);
return r;
};
} else {
var m = l;
l = function l(e, t) {
return m.call(e, t);
};
}
e.push(l);
}
0 !== n && (1 === n ? (c.get = u.get, c.set = u.set) : 2 === n ? c.value = u : 3 === n ? c.get = u : 4 === n && (c.set = u), s ? 1 === n ? (e.push(function (e, t) {
return u.get.call(e, t);
}), e.push(function (e, t) {
return u.set.call(e, t);
})) : 2 === n ? e.push(u) : e.push(function (e, t) {
return u.call(e, t);
}) : Object.defineProperty(t, a, c));
}
function pushInitializers(e, t) {
t && e.push(function (e) {
for (var r = 0; r < t.length; r++) t[r].call(e);
return e;
});
}
return function (e, t, r) {
var a = [];
return function (e, t, r) {
for (var a, n, i = new Map(), s = new Map(), o = 0; o < r.length; o++) {
var c = r[o];
if (Array.isArray(c)) {
var l,
u,
f = c[1],
p = c[2],
d = c.length > 3,
h = f >= 5;
if (h ? (l = t, 0 != (f -= 5) && (u = n = n || [])) : (l = t.prototype, 0 !== f && (u = a = a || [])), 0 !== f && !d) {
var v = h ? s : i,
g = v.get(p) || 0;
if (!0 === g || 3 === g && 4 !== f || 4 === g && 3 !== f) throw Error("Attempted to decorate a public method/accessor that has the same name as a previously decorated public method/accessor. This is not currently supported by the decorators plugin. Property name was: " + p);
!g && f > 2 ? v.set(p, f) : v.set(p, !0);
}
applyMemberDec(e, l, c, p, f, h, d, u);
}
}
pushInitializers(e, a), pushInitializers(e, n);
}(a, e, t), function (e, t, r) {
if (r.length > 0) {
for (var a = [], n = t, i = t.name, s = r.length - 1; s >= 0; s--) {
var o = {
v: !1
};
try {
var c = r[s](n, {
kind: "class",
name: i,
addInitializer: createAddInitializerMethod(a, o)
});
} finally {
o.v = !0;
}
void 0 !== c && (assertValidReturnValue(10, c), n = c);
}
e.push(n, function () {
for (var e = 0; e < a.length; e++) a[e].call(n);
});
}
}(a, e, r), a;
};
}
var applyDecs2203Impl;
function applyDecs2203(e, t, r) {
return (applyDecs2203Impl = applyDecs2203Impl || applyDecs2203Factory())(e, t, r);
}
module.exports = applyDecs2203, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,191 @@
var _typeof = require("./typeof.js")["default"];
var setFunctionName = require("./setFunctionName.js");
var toPropertyKey = require("./toPropertyKey.js");
function applyDecs2203RFactory() {
function createAddInitializerMethod(e, t) {
return function (r) {
!function (e) {
if (e.v) throw Error("attempted to call addInitializer after decoration was finished");
}(t), assertCallable(r, "An initializer"), e.push(r);
};
}
function memberDec(e, t, r, n, a, i, o, s) {
var c;
switch (a) {
case 1:
c = "accessor";
break;
case 2:
c = "method";
break;
case 3:
c = "getter";
break;
case 4:
c = "setter";
break;
default:
c = "field";
}
var l,
u,
f = {
kind: c,
name: o ? "#" + t : toPropertyKey(t),
"static": i,
"private": o
},
p = {
v: !1
};
0 !== a && (f.addInitializer = createAddInitializerMethod(n, p)), 0 === a ? o ? (l = r.get, u = r.set) : (l = function l() {
return this[t];
}, u = function u(e) {
this[t] = e;
}) : 2 === a ? l = function l() {
return r.value;
} : (1 !== a && 3 !== a || (l = function l() {
return r.get.call(this);
}), 1 !== a && 4 !== a || (u = function u(e) {
r.set.call(this, e);
})), f.access = l && u ? {
get: l,
set: u
} : l ? {
get: l
} : {
set: u
};
try {
return e(s, f);
} finally {
p.v = !0;
}
}
function assertCallable(e, t) {
if ("function" != typeof e) throw new TypeError(t + " must be a function");
}
function assertValidReturnValue(e, t) {
var r = _typeof(t);
if (1 === e) {
if ("object" !== r || null === t) throw new TypeError("accessor decorators must return an object with get, set, or init properties or void 0");
void 0 !== t.get && assertCallable(t.get, "accessor.get"), void 0 !== t.set && assertCallable(t.set, "accessor.set"), void 0 !== t.init && assertCallable(t.init, "accessor.init");
} else if ("function" !== r) throw new TypeError((0 === e ? "field" : 10 === e ? "class" : "method") + " decorators must return a function or void 0");
}
function applyMemberDec(e, t, r, n, a, i, o, s) {
var c,
l,
u,
f,
p,
d,
h,
v = r[0];
if (o ? (0 === a || 1 === a ? (c = {
get: r[3],
set: r[4]
}, u = "get") : 3 === a ? (c = {
get: r[3]
}, u = "get") : 4 === a ? (c = {
set: r[3]
}, u = "set") : c = {
value: r[3]
}, 0 !== a && (1 === a && setFunctionName(r[4], "#" + n, "set"), setFunctionName(r[3], "#" + n, u))) : 0 !== a && (c = Object.getOwnPropertyDescriptor(t, n)), 1 === a ? f = {
get: c.get,
set: c.set
} : 2 === a ? f = c.value : 3 === a ? f = c.get : 4 === a && (f = c.set), "function" == typeof v) void 0 !== (p = memberDec(v, n, c, s, a, i, o, f)) && (assertValidReturnValue(a, p), 0 === a ? l = p : 1 === a ? (l = p.init, d = p.get || f.get, h = p.set || f.set, f = {
get: d,
set: h
}) : f = p);else for (var g = v.length - 1; g >= 0; g--) {
var y;
void 0 !== (p = memberDec(v[g], n, c, s, a, i, o, f)) && (assertValidReturnValue(a, p), 0 === a ? y = p : 1 === a ? (y = p.init, d = p.get || f.get, h = p.set || f.set, f = {
get: d,
set: h
}) : f = p, void 0 !== y && (void 0 === l ? l = y : "function" == typeof l ? l = [l, y] : l.push(y)));
}
if (0 === a || 1 === a) {
if (void 0 === l) l = function l(e, t) {
return t;
};else if ("function" != typeof l) {
var m = l;
l = function l(e, t) {
for (var r = t, n = 0; n < m.length; n++) r = m[n].call(e, r);
return r;
};
} else {
var b = l;
l = function l(e, t) {
return b.call(e, t);
};
}
e.push(l);
}
0 !== a && (1 === a ? (c.get = f.get, c.set = f.set) : 2 === a ? c.value = f : 3 === a ? c.get = f : 4 === a && (c.set = f), o ? 1 === a ? (e.push(function (e, t) {
return f.get.call(e, t);
}), e.push(function (e, t) {
return f.set.call(e, t);
})) : 2 === a ? e.push(f) : e.push(function (e, t) {
return f.call(e, t);
}) : Object.defineProperty(t, n, c));
}
function applyMemberDecs(e, t) {
for (var r, n, a = [], i = new Map(), o = new Map(), s = 0; s < t.length; s++) {
var c = t[s];
if (Array.isArray(c)) {
var l,
u,
f = c[1],
p = c[2],
d = c.length > 3,
h = f >= 5;
if (h ? (l = e, 0 != (f -= 5) && (u = n = n || [])) : (l = e.prototype, 0 !== f && (u = r = r || [])), 0 !== f && !d) {
var v = h ? o : i,
g = v.get(p) || 0;
if (!0 === g || 3 === g && 4 !== f || 4 === g && 3 !== f) throw Error("Attempted to decorate a public method/accessor that has the same name as a previously decorated public method/accessor. This is not currently supported by the decorators plugin. Property name was: " + p);
!g && f > 2 ? v.set(p, f) : v.set(p, !0);
}
applyMemberDec(a, l, c, p, f, h, d, u);
}
}
return pushInitializers(a, r), pushInitializers(a, n), a;
}
function pushInitializers(e, t) {
t && e.push(function (e) {
for (var r = 0; r < t.length; r++) t[r].call(e);
return e;
});
}
return function (e, t, r) {
return {
e: applyMemberDecs(e, t),
get c() {
return function (e, t) {
if (t.length > 0) {
for (var r = [], n = e, a = e.name, i = t.length - 1; i >= 0; i--) {
var o = {
v: !1
};
try {
var s = t[i](n, {
kind: "class",
name: a,
addInitializer: createAddInitializerMethod(r, o)
});
} finally {
o.v = !0;
}
void 0 !== s && (assertValidReturnValue(10, s), n = s);
}
return [n, function () {
for (var e = 0; e < r.length; e++) r[e].call(n);
}];
}
}(e, r);
}
};
};
}
function applyDecs2203R(e, t, r) {
return (module.exports = applyDecs2203R = applyDecs2203RFactory(), module.exports.__esModule = true, module.exports["default"] = module.exports)(e, t, r);
}
module.exports = applyDecs2203R, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,222 @@
var _typeof = require("./typeof.js")["default"];
var checkInRHS = require("./checkInRHS.js");
var setFunctionName = require("./setFunctionName.js");
var toPropertyKey = require("./toPropertyKey.js");
function applyDecs2301Factory() {
function createAddInitializerMethod(e, t) {
return function (r) {
!function (e) {
if (e.v) throw Error("attempted to call addInitializer after decoration was finished");
}(t), assertCallable(r, "An initializer"), e.push(r);
};
}
function assertInstanceIfPrivate(e, t) {
if (!e(t)) throw new TypeError("Attempted to access private element on non-instance");
}
function memberDec(e, t, r, n, a, i, s, o, c) {
var u;
switch (a) {
case 1:
u = "accessor";
break;
case 2:
u = "method";
break;
case 3:
u = "getter";
break;
case 4:
u = "setter";
break;
default:
u = "field";
}
var l,
f,
p = {
kind: u,
name: s ? "#" + t : toPropertyKey(t),
"static": i,
"private": s
},
d = {
v: !1
};
if (0 !== a && (p.addInitializer = createAddInitializerMethod(n, d)), s || 0 !== a && 2 !== a) {
if (2 === a) l = function l(e) {
return assertInstanceIfPrivate(c, e), r.value;
};else {
var h = 0 === a || 1 === a;
(h || 3 === a) && (l = s ? function (e) {
return assertInstanceIfPrivate(c, e), r.get.call(e);
} : function (e) {
return r.get.call(e);
}), (h || 4 === a) && (f = s ? function (e, t) {
assertInstanceIfPrivate(c, e), r.set.call(e, t);
} : function (e, t) {
r.set.call(e, t);
});
}
} else l = function l(e) {
return e[t];
}, 0 === a && (f = function f(e, r) {
e[t] = r;
});
var v = s ? c.bind() : function (e) {
return t in e;
};
p.access = l && f ? {
get: l,
set: f,
has: v
} : l ? {
get: l,
has: v
} : {
set: f,
has: v
};
try {
return e(o, p);
} finally {
d.v = !0;
}
}
function assertCallable(e, t) {
if ("function" != typeof e) throw new TypeError(t + " must be a function");
}
function assertValidReturnValue(e, t) {
var r = _typeof(t);
if (1 === e) {
if ("object" !== r || null === t) throw new TypeError("accessor decorators must return an object with get, set, or init properties or void 0");
void 0 !== t.get && assertCallable(t.get, "accessor.get"), void 0 !== t.set && assertCallable(t.set, "accessor.set"), void 0 !== t.init && assertCallable(t.init, "accessor.init");
} else if ("function" !== r) throw new TypeError((0 === e ? "field" : 10 === e ? "class" : "method") + " decorators must return a function or void 0");
}
function curryThis2(e) {
return function (t) {
e(this, t);
};
}
function applyMemberDec(e, t, r, n, a, i, s, o, c) {
var u,
l,
f,
p,
d,
h,
v,
y,
g = r[0];
if (s ? (0 === a || 1 === a ? (u = {
get: (d = r[3], function () {
return d(this);
}),
set: curryThis2(r[4])
}, f = "get") : 3 === a ? (u = {
get: r[3]
}, f = "get") : 4 === a ? (u = {
set: r[3]
}, f = "set") : u = {
value: r[3]
}, 0 !== a && (1 === a && setFunctionName(u.set, "#" + n, "set"), setFunctionName(u[f || "value"], "#" + n, f))) : 0 !== a && (u = Object.getOwnPropertyDescriptor(t, n)), 1 === a ? p = {
get: u.get,
set: u.set
} : 2 === a ? p = u.value : 3 === a ? p = u.get : 4 === a && (p = u.set), "function" == typeof g) void 0 !== (h = memberDec(g, n, u, o, a, i, s, p, c)) && (assertValidReturnValue(a, h), 0 === a ? l = h : 1 === a ? (l = h.init, v = h.get || p.get, y = h.set || p.set, p = {
get: v,
set: y
}) : p = h);else for (var m = g.length - 1; m >= 0; m--) {
var b;
void 0 !== (h = memberDec(g[m], n, u, o, a, i, s, p, c)) && (assertValidReturnValue(a, h), 0 === a ? b = h : 1 === a ? (b = h.init, v = h.get || p.get, y = h.set || p.set, p = {
get: v,
set: y
}) : p = h, void 0 !== b && (void 0 === l ? l = b : "function" == typeof l ? l = [l, b] : l.push(b)));
}
if (0 === a || 1 === a) {
if (void 0 === l) l = function l(e, t) {
return t;
};else if ("function" != typeof l) {
var I = l;
l = function l(e, t) {
for (var r = t, n = 0; n < I.length; n++) r = I[n].call(e, r);
return r;
};
} else {
var w = l;
l = function l(e, t) {
return w.call(e, t);
};
}
e.push(l);
}
0 !== a && (1 === a ? (u.get = p.get, u.set = p.set) : 2 === a ? u.value = p : 3 === a ? u.get = p : 4 === a && (u.set = p), s ? 1 === a ? (e.push(function (e, t) {
return p.get.call(e, t);
}), e.push(function (e, t) {
return p.set.call(e, t);
})) : 2 === a ? e.push(p) : e.push(function (e, t) {
return p.call(e, t);
}) : Object.defineProperty(t, n, u));
}
function applyMemberDecs(e, t, r) {
for (var n, a, i, s = [], o = new Map(), c = new Map(), u = 0; u < t.length; u++) {
var l = t[u];
if (Array.isArray(l)) {
var f,
p,
d = l[1],
h = l[2],
v = l.length > 3,
y = d >= 5,
g = r;
if (y ? (f = e, 0 != (d -= 5) && (p = a = a || []), v && !i && (i = function i(t) {
return checkInRHS(t) === e;
}), g = i) : (f = e.prototype, 0 !== d && (p = n = n || [])), 0 !== d && !v) {
var m = y ? c : o,
b = m.get(h) || 0;
if (!0 === b || 3 === b && 4 !== d || 4 === b && 3 !== d) throw Error("Attempted to decorate a public method/accessor that has the same name as a previously decorated public method/accessor. This is not currently supported by the decorators plugin. Property name was: " + h);
!b && d > 2 ? m.set(h, d) : m.set(h, !0);
}
applyMemberDec(s, f, l, h, d, y, v, p, g);
}
}
return pushInitializers(s, n), pushInitializers(s, a), s;
}
function pushInitializers(e, t) {
t && e.push(function (e) {
for (var r = 0; r < t.length; r++) t[r].call(e);
return e;
});
}
return function (e, t, r, n) {
return {
e: applyMemberDecs(e, t, n),
get c() {
return function (e, t) {
if (t.length > 0) {
for (var r = [], n = e, a = e.name, i = t.length - 1; i >= 0; i--) {
var s = {
v: !1
};
try {
var o = t[i](n, {
kind: "class",
name: a,
addInitializer: createAddInitializerMethod(r, s)
});
} finally {
s.v = !0;
}
void 0 !== o && (assertValidReturnValue(10, o), n = o);
}
return [n, function () {
for (var e = 0; e < r.length; e++) r[e].call(n);
}];
}
}(e, r);
}
};
};
}
function applyDecs2301(e, t, r, n) {
return (module.exports = applyDecs2301 = applyDecs2301Factory(), module.exports.__esModule = true, module.exports["default"] = module.exports)(e, t, r, n);
}
module.exports = applyDecs2301, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,133 @@
var _typeof = require("./typeof.js")["default"];
var checkInRHS = require("./checkInRHS.js");
var setFunctionName = require("./setFunctionName.js");
var toPropertyKey = require("./toPropertyKey.js");
function applyDecs2305(e, t, r, n, o, a) {
function i(e, t, r) {
return function (n, o) {
return r && r(n), e[t].call(n, o);
};
}
function c(e, t) {
for (var r = 0; r < e.length; r++) e[r].call(t);
return t;
}
function s(e, t, r, n) {
if ("function" != typeof e && (n || void 0 !== e)) throw new TypeError(t + " must " + (r || "be") + " a function" + (n ? "" : " or undefined"));
return e;
}
function applyDec(e, t, r, n, o, a, c, u, l, f, p, d, h) {
function m(e) {
if (!h(e)) throw new TypeError("Attempted to access private element on non-instance");
}
var y,
v = t[0],
g = t[3],
b = !u;
if (!b) {
r || Array.isArray(v) || (v = [v]);
var w = {},
S = [],
A = 3 === o ? "get" : 4 === o || d ? "set" : "value";
f ? (p || d ? w = {
get: setFunctionName(function () {
return g(this);
}, n, "get"),
set: function set(e) {
t[4](this, e);
}
} : w[A] = g, p || setFunctionName(w[A], n, 2 === o ? "" : A)) : p || (w = Object.getOwnPropertyDescriptor(e, n));
}
for (var P = e, j = v.length - 1; j >= 0; j -= r ? 2 : 1) {
var D = v[j],
E = r ? v[j - 1] : void 0,
I = {},
O = {
kind: ["field", "accessor", "method", "getter", "setter", "class"][o],
name: n,
metadata: a,
addInitializer: function (e, t) {
if (e.v) throw Error("attempted to call addInitializer after decoration was finished");
s(t, "An initializer", "be", !0), c.push(t);
}.bind(null, I)
};
try {
if (b) (y = s(D.call(E, P, O), "class decorators", "return")) && (P = y);else {
var k, F;
O["static"] = l, O["private"] = f, f ? 2 === o ? k = function k(e) {
return m(e), w.value;
} : (o < 4 && (k = i(w, "get", m)), 3 !== o && (F = i(w, "set", m))) : (k = function k(e) {
return e[n];
}, (o < 2 || 4 === o) && (F = function F(e, t) {
e[n] = t;
}));
var N = O.access = {
has: f ? h.bind() : function (e) {
return n in e;
}
};
if (k && (N.get = k), F && (N.set = F), P = D.call(E, d ? {
get: w.get,
set: w.set
} : w[A], O), d) {
if ("object" == _typeof(P) && P) (y = s(P.get, "accessor.get")) && (w.get = y), (y = s(P.set, "accessor.set")) && (w.set = y), (y = s(P.init, "accessor.init")) && S.push(y);else if (void 0 !== P) throw new TypeError("accessor decorators must return an object with get, set, or init properties or void 0");
} else s(P, (p ? "field" : "method") + " decorators", "return") && (p ? S.push(P) : w[A] = P);
}
} finally {
I.v = !0;
}
}
return (p || d) && u.push(function (e, t) {
for (var r = S.length - 1; r >= 0; r--) t = S[r].call(e, t);
return t;
}), p || b || (f ? d ? u.push(i(w, "get"), i(w, "set")) : u.push(2 === o ? w[A] : i.call.bind(w[A])) : Object.defineProperty(e, n, w)), P;
}
function u(e, t) {
return Object.defineProperty(e, Symbol.metadata || Symbol["for"]("Symbol.metadata"), {
configurable: !0,
enumerable: !0,
value: t
});
}
if (arguments.length >= 6) var l = a[Symbol.metadata || Symbol["for"]("Symbol.metadata")];
var f = Object.create(null == l ? null : l),
p = function (e, t, r, n) {
var o,
a,
i = [],
s = function s(t) {
return checkInRHS(t) === e;
},
u = new Map();
function l(e) {
e && i.push(c.bind(null, e));
}
for (var f = 0; f < t.length; f++) {
var p = t[f];
if (Array.isArray(p)) {
var d = p[1],
h = p[2],
m = p.length > 3,
y = 16 & d,
v = !!(8 & d),
g = 0 == (d &= 7),
b = h + "/" + v;
if (!g && !m) {
var w = u.get(b);
if (!0 === w || 3 === w && 4 !== d || 4 === w && 3 !== d) throw Error("Attempted to decorate a public method/accessor that has the same name as a previously decorated public method/accessor. This is not currently supported by the decorators plugin. Property name was: " + h);
u.set(b, !(d > 2) || d);
}
applyDec(v ? e : e.prototype, p, y, m ? "#" + h : toPropertyKey(h), d, n, v ? a = a || [] : o = o || [], i, v, m, g, 1 === d, v && m ? s : r);
}
}
return l(o), l(a), i;
}(e, t, o, f);
return r.length || u(e, f), {
e: p,
get c() {
var t = [];
return r.length && [u(applyDec(e, [r], n, e.name, 5, f, t), f), c.bind(null, t, e)];
}
};
}
module.exports = applyDecs2305, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,124 @@
var _typeof = require("./typeof.js")["default"];
var checkInRHS = require("./checkInRHS.js");
var setFunctionName = require("./setFunctionName.js");
var toPropertyKey = require("./toPropertyKey.js");
function applyDecs2311(e, t, n, r, o, i) {
var a,
c,
u,
s,
f,
l,
p,
d = Symbol.metadata || Symbol["for"]("Symbol.metadata"),
m = Object.defineProperty,
h = Object.create,
y = [h(null), h(null)],
v = t.length;
function g(t, n, r) {
return function (o, i) {
n && (i = o, o = e);
for (var a = 0; a < t.length; a++) i = t[a].apply(o, r ? [i] : []);
return r ? i : o;
};
}
function b(e, t, n, r) {
if ("function" != typeof e && (r || void 0 !== e)) throw new TypeError(t + " must " + (n || "be") + " a function" + (r ? "" : " or undefined"));
return e;
}
function applyDec(e, t, n, r, o, i, u, s, f, l, p) {
function d(e) {
if (!p(e)) throw new TypeError("Attempted to access private element on non-instance");
}
var h = [].concat(t[0]),
v = t[3],
w = !u,
D = 1 === o,
S = 3 === o,
j = 4 === o,
E = 2 === o;
function I(t, n, r) {
return function (o, i) {
return n && (i = o, o = e), r && r(o), P[t].call(o, i);
};
}
if (!w) {
var P = {},
k = [],
F = S ? "get" : j || D ? "set" : "value";
if (f ? (l || D ? P = {
get: setFunctionName(function () {
return v(this);
}, r, "get"),
set: function set(e) {
t[4](this, e);
}
} : P[F] = v, l || setFunctionName(P[F], r, E ? "" : F)) : l || (P = Object.getOwnPropertyDescriptor(e, r)), !l && !f) {
if ((c = y[+s][r]) && 7 !== (c ^ o)) throw Error("Decorating two elements with the same name (" + P[F].name + ") is not supported yet");
y[+s][r] = o < 3 ? 1 : o;
}
}
for (var N = e, O = h.length - 1; O >= 0; O -= n ? 2 : 1) {
var T = b(h[O], "A decorator", "be", !0),
z = n ? h[O - 1] : void 0,
A = {},
H = {
kind: ["field", "accessor", "method", "getter", "setter", "class"][o],
name: r,
metadata: a,
addInitializer: function (e, t) {
if (e.v) throw new TypeError("attempted to call addInitializer after decoration was finished");
b(t, "An initializer", "be", !0), i.push(t);
}.bind(null, A)
};
if (w) c = T.call(z, N, H), A.v = 1, b(c, "class decorators", "return") && (N = c);else if (H["static"] = s, H["private"] = f, c = H.access = {
has: f ? p.bind() : function (e) {
return r in e;
}
}, j || (c.get = f ? E ? function (e) {
return d(e), P.value;
} : I("get", 0, d) : function (e) {
return e[r];
}), E || S || (c.set = f ? I("set", 0, d) : function (e, t) {
e[r] = t;
}), N = T.call(z, D ? {
get: P.get,
set: P.set
} : P[F], H), A.v = 1, D) {
if ("object" == _typeof(N) && N) (c = b(N.get, "accessor.get")) && (P.get = c), (c = b(N.set, "accessor.set")) && (P.set = c), (c = b(N.init, "accessor.init")) && k.unshift(c);else if (void 0 !== N) throw new TypeError("accessor decorators must return an object with get, set, or init properties or undefined");
} else b(N, (l ? "field" : "method") + " decorators", "return") && (l ? k.unshift(N) : P[F] = N);
}
return o < 2 && u.push(g(k, s, 1), g(i, s, 0)), l || w || (f ? D ? u.splice(-1, 0, I("get", s), I("set", s)) : u.push(E ? P[F] : b.call.bind(P[F])) : m(e, r, P)), N;
}
function w(e) {
return m(e, d, {
configurable: !0,
enumerable: !0,
value: a
});
}
return void 0 !== i && (a = i[d]), a = h(null == a ? null : a), f = [], l = function l(e) {
e && f.push(g(e));
}, p = function p(t, r) {
for (var i = 0; i < n.length; i++) {
var a = n[i],
c = a[1],
l = 7 & c;
if ((8 & c) == t && !l == r) {
var p = a[2],
d = !!a[3],
m = 16 & c;
applyDec(t ? e : e.prototype, a, m, d ? "#" + p : toPropertyKey(p), l, l < 2 ? [] : t ? s = s || [] : u = u || [], f, !!t, d, r, t && d ? function (t) {
return checkInRHS(t) === e;
} : o);
}
}
}, p(8, 0), p(0, 0), p(8, 1), p(0, 1), l(u), l(s), c = f, v || w(e), {
e: c,
get c() {
var n = [];
return v && [w(e = applyDec(e, [t], r, e.name, 5, n)), g(n, 1)];
}
};
}
module.exports = applyDecs2311, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,6 @@
function _arrayLikeToArray(r, a) {
(null == a || a > r.length) && (a = r.length);
for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e];
return n;
}
module.exports = _arrayLikeToArray, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,4 @@
function _arrayWithHoles(r) {
if (Array.isArray(r)) return r;
}
module.exports = _arrayWithHoles, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,5 @@
var arrayLikeToArray = require("./arrayLikeToArray.js");
function _arrayWithoutHoles(r) {
if (Array.isArray(r)) return arrayLikeToArray(r);
}
module.exports = _arrayWithoutHoles, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,5 @@
function _assertClassBrand(e, t, n) {
if ("function" == typeof e ? e === t : e.has(t)) return arguments.length < 3 ? t : n;
throw new TypeError("Private element is not present on this object");
}
module.exports = _assertClassBrand, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,5 @@
function _assertThisInitialized(e) {
if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
return e;
}
module.exports = _assertThisInitialized, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,24 @@
var OverloadYield = require("./OverloadYield.js");
function _asyncGeneratorDelegate(t) {
var e = {},
n = !1;
function pump(e, r) {
return n = !0, r = new Promise(function (n) {
n(t[e](r));
}), {
done: !1,
value: new OverloadYield(r, 1)
};
}
return e["undefined" != typeof Symbol && Symbol.iterator || "@@iterator"] = function () {
return this;
}, e.next = function (t) {
return n ? (n = !1, t) : pump("next", t);
}, "function" == typeof t["throw"] && (e["throw"] = function (t) {
if (n) throw n = !1, t;
return pump("throw", t);
}), "function" == typeof t["return"] && (e["return"] = function (t) {
return n ? (n = !1, t) : pump("return", t);
}), e;
}
module.exports = _asyncGeneratorDelegate, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,45 @@
function _asyncIterator(r) {
var n,
t,
o,
e = 2;
for ("undefined" != typeof Symbol && (t = Symbol.asyncIterator, o = Symbol.iterator); e--;) {
if (t && null != (n = r[t])) return n.call(r);
if (o && null != (n = r[o])) return new AsyncFromSyncIterator(n.call(r));
t = "@@asyncIterator", o = "@@iterator";
}
throw new TypeError("Object is not async iterable");
}
function AsyncFromSyncIterator(r) {
function AsyncFromSyncIteratorContinuation(r) {
if (Object(r) !== r) return Promise.reject(new TypeError(r + " is not an object."));
var n = r.done;
return Promise.resolve(r.value).then(function (r) {
return {
value: r,
done: n
};
});
}
return AsyncFromSyncIterator = function AsyncFromSyncIterator(r) {
this.s = r, this.n = r.next;
}, AsyncFromSyncIterator.prototype = {
s: null,
n: null,
next: function next() {
return AsyncFromSyncIteratorContinuation(this.n.apply(this.s, arguments));
},
"return": function _return(r) {
var n = this.s["return"];
return void 0 === n ? Promise.resolve({
value: r,
done: !0
}) : AsyncFromSyncIteratorContinuation(n.apply(this.s, arguments));
},
"throw": function _throw(r) {
var n = this.s["return"];
return void 0 === n ? Promise.reject(r) : AsyncFromSyncIteratorContinuation(n.apply(this.s, arguments));
}
}, new AsyncFromSyncIterator(r);
}
module.exports = _asyncIterator, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,26 @@
function asyncGeneratorStep(n, t, e, r, o, a, c) {
try {
var i = n[a](c),
u = i.value;
} catch (n) {
return void e(n);
}
i.done ? t(u) : Promise.resolve(u).then(r, o);
}
function _asyncToGenerator(n) {
return function () {
var t = this,
e = arguments;
return new Promise(function (r, o) {
var a = n.apply(t, e);
function _next(n) {
asyncGeneratorStep(a, r, o, _next, _throw, "next", n);
}
function _throw(n) {
asyncGeneratorStep(a, r, o, _next, _throw, "throw", n);
}
_next(void 0);
});
};
}
module.exports = _asyncToGenerator, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,5 @@
var OverloadYield = require("./OverloadYield.js");
function _awaitAsyncGenerator(e) {
return new OverloadYield(e, 0);
}
module.exports = _awaitAsyncGenerator, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,7 @@
var getPrototypeOf = require("./getPrototypeOf.js");
var isNativeReflectConstruct = require("./isNativeReflectConstruct.js");
var possibleConstructorReturn = require("./possibleConstructorReturn.js");
function _callSuper(t, o, e) {
return o = getPrototypeOf(o), possibleConstructorReturn(t, isNativeReflectConstruct() ? Reflect.construct(o, e || [], getPrototypeOf(t).constructor) : o.apply(t, e));
}
module.exports = _callSuper, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,6 @@
var _typeof = require("./typeof.js")["default"];
function _checkInRHS(e) {
if (Object(e) !== e) throw TypeError("right-hand side of 'in' should be an object, got " + (null !== e ? _typeof(e) : "null"));
return e;
}
module.exports = _checkInRHS, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,4 @@
function _checkPrivateRedeclaration(e, t) {
if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object");
}
module.exports = _checkPrivateRedeclaration, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,10 @@
function _classApplyDescriptorDestructureSet(e, t) {
if (t.set) return "__destrObj" in t || (t.__destrObj = {
set value(r) {
t.set.call(e, r);
}
}), t.__destrObj;
if (!t.writable) throw new TypeError("attempted to set read only private field");
return t;
}
module.exports = _classApplyDescriptorDestructureSet, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,4 @@
function _classApplyDescriptorGet(e, t) {
return t.get ? t.get.call(e) : t.value;
}
module.exports = _classApplyDescriptorGet, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,7 @@
function _classApplyDescriptorSet(e, t, l) {
if (t.set) t.set.call(e, l);else {
if (!t.writable) throw new TypeError("attempted to set read only private field");
t.value = l;
}
}
module.exports = _classApplyDescriptorSet, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,4 @@
function _classCallCheck(a, n) {
if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function");
}
module.exports = _classCallCheck, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,5 @@
var assertClassBrand = require("./assertClassBrand.js");
function _classCheckPrivateStaticAccess(s, a, r) {
return assertClassBrand(a, s, r);
}
module.exports = _classCheckPrivateStaticAccess, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,4 @@
function _classCheckPrivateStaticFieldDescriptor(t, e) {
if (void 0 === t) throw new TypeError("attempted to " + e + " private static field before its declaration");
}
module.exports = _classCheckPrivateStaticFieldDescriptor, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,5 @@
var classPrivateFieldGet2 = require("./classPrivateFieldGet2.js");
function _classExtractFieldDescriptor(e, t) {
return classPrivateFieldGet2(t, e);
}
module.exports = _classExtractFieldDescriptor, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,4 @@
function _classNameTDZError(e) {
throw new ReferenceError('Class "' + e + '" cannot be referenced in computed property keys.');
}
module.exports = _classNameTDZError, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,7 @@
var classApplyDescriptorDestructureSet = require("./classApplyDescriptorDestructureSet.js");
var classPrivateFieldGet2 = require("./classPrivateFieldGet2.js");
function _classPrivateFieldDestructureSet(e, t) {
var r = classPrivateFieldGet2(t, e);
return classApplyDescriptorDestructureSet(e, r);
}
module.exports = _classPrivateFieldDestructureSet, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,7 @@
var classApplyDescriptorGet = require("./classApplyDescriptorGet.js");
var classPrivateFieldGet2 = require("./classPrivateFieldGet2.js");
function _classPrivateFieldGet(e, t) {
var r = classPrivateFieldGet2(t, e);
return classApplyDescriptorGet(e, r);
}
module.exports = _classPrivateFieldGet, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,5 @@
var assertClassBrand = require("./assertClassBrand.js");
function _classPrivateFieldGet2(s, a) {
return s.get(assertClassBrand(s, a));
}
module.exports = _classPrivateFieldGet2, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,5 @@
var checkPrivateRedeclaration = require("./checkPrivateRedeclaration.js");
function _classPrivateFieldInitSpec(e, t, a) {
checkPrivateRedeclaration(e, t), t.set(e, a);
}
module.exports = _classPrivateFieldInitSpec, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,5 @@
function _classPrivateFieldBase(e, t) {
if (!{}.hasOwnProperty.call(e, t)) throw new TypeError("attempted to use private field on non-instance");
return e;
}
module.exports = _classPrivateFieldBase, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,5 @@
var id = 0;
function _classPrivateFieldKey(e) {
return "__private_" + id++ + "_" + e;
}
module.exports = _classPrivateFieldKey, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,7 @@
var classApplyDescriptorSet = require("./classApplyDescriptorSet.js");
var classPrivateFieldGet2 = require("./classPrivateFieldGet2.js");
function _classPrivateFieldSet(e, t, r) {
var s = classPrivateFieldGet2(t, e);
return classApplyDescriptorSet(e, s, r), r;
}
module.exports = _classPrivateFieldSet, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,5 @@
var assertClassBrand = require("./assertClassBrand.js");
function _classPrivateFieldSet2(s, a, r) {
return s.set(assertClassBrand(s, a), r), r;
}
module.exports = _classPrivateFieldSet2, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,5 @@
var assertClassBrand = require("./assertClassBrand.js");
function _classPrivateGetter(s, r, a) {
return a(assertClassBrand(s, r));
}
module.exports = _classPrivateGetter, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,5 @@
var assertClassBrand = require("./assertClassBrand.js");
function _classPrivateMethodGet(s, a, r) {
return assertClassBrand(a, s), r;
}
module.exports = _classPrivateMethodGet, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,5 @@
var checkPrivateRedeclaration = require("./checkPrivateRedeclaration.js");
function _classPrivateMethodInitSpec(e, a) {
checkPrivateRedeclaration(e, a), a.add(e);
}
module.exports = _classPrivateMethodInitSpec, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,4 @@
function _classPrivateMethodSet() {
throw new TypeError("attempted to reassign private method");
}
module.exports = _classPrivateMethodSet, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,5 @@
var assertClassBrand = require("./assertClassBrand.js");
function _classPrivateSetter(s, r, a, t) {
return r(assertClassBrand(s, a), t), t;
}
module.exports = _classPrivateSetter, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,7 @@
var classApplyDescriptorDestructureSet = require("./classApplyDescriptorDestructureSet.js");
var assertClassBrand = require("./assertClassBrand.js");
var classCheckPrivateStaticFieldDescriptor = require("./classCheckPrivateStaticFieldDescriptor.js");
function _classStaticPrivateFieldDestructureSet(t, r, s) {
return assertClassBrand(r, t), classCheckPrivateStaticFieldDescriptor(s, "set"), classApplyDescriptorDestructureSet(t, s);
}
module.exports = _classStaticPrivateFieldDestructureSet, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,7 @@
var classApplyDescriptorGet = require("./classApplyDescriptorGet.js");
var assertClassBrand = require("./assertClassBrand.js");
var classCheckPrivateStaticFieldDescriptor = require("./classCheckPrivateStaticFieldDescriptor.js");
function _classStaticPrivateFieldSpecGet(t, s, r) {
return assertClassBrand(s, t), classCheckPrivateStaticFieldDescriptor(r, "get"), classApplyDescriptorGet(t, r);
}
module.exports = _classStaticPrivateFieldSpecGet, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,7 @@
var classApplyDescriptorSet = require("./classApplyDescriptorSet.js");
var assertClassBrand = require("./assertClassBrand.js");
var classCheckPrivateStaticFieldDescriptor = require("./classCheckPrivateStaticFieldDescriptor.js");
function _classStaticPrivateFieldSpecSet(s, t, r, e) {
return assertClassBrand(t, s), classCheckPrivateStaticFieldDescriptor(r, "set"), classApplyDescriptorSet(s, r, e), e;
}
module.exports = _classStaticPrivateFieldSpecSet, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,5 @@
var assertClassBrand = require("./assertClassBrand.js");
function _classStaticPrivateMethodGet(s, a, t) {
return assertClassBrand(a, s), t;
}
module.exports = _classStaticPrivateMethodGet, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,4 @@
function _classStaticPrivateMethodSet() {
throw new TypeError("attempted to set read only static private field");
}
module.exports = _classStaticPrivateMethodSet, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,10 @@
var isNativeReflectConstruct = require("./isNativeReflectConstruct.js");
var setPrototypeOf = require("./setPrototypeOf.js");
function _construct(t, e, r) {
if (isNativeReflectConstruct()) return Reflect.construct.apply(null, arguments);
var o = [null];
o.push.apply(o, e);
var p = new (t.bind.apply(t, o))();
return r && setPrototypeOf(p, r.prototype), p;
}
module.exports = _construct, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,13 @@
var toPropertyKey = require("./toPropertyKey.js");
function _defineProperties(e, r) {
for (var t = 0; t < r.length; t++) {
var o = r[t];
o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, toPropertyKey(o.key), o);
}
}
function _createClass(e, r, t) {
return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", {
writable: !1
}), e;
}
module.exports = _createClass, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,50 @@
var unsupportedIterableToArray = require("./unsupportedIterableToArray.js");
function _createForOfIteratorHelper(r, e) {
var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];
if (!t) {
if (Array.isArray(r) || (t = unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) {
t && (r = t);
var _n = 0,
F = function F() {};
return {
s: F,
n: function n() {
return _n >= r.length ? {
done: !0
} : {
done: !1,
value: r[_n++]
};
},
e: function e(r) {
throw r;
},
f: F
};
}
throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
}
var o,
a = !0,
u = !1;
return {
s: function s() {
t = t.call(r);
},
n: function n() {
var r = t.next();
return a = r.done, r;
},
e: function e(r) {
u = !0, o = r;
},
f: function f() {
try {
a || null == t["return"] || t["return"]();
} finally {
if (u) throw o;
}
}
};
}
module.exports = _createForOfIteratorHelper, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,19 @@
var unsupportedIterableToArray = require("./unsupportedIterableToArray.js");
function _createForOfIteratorHelperLoose(r, e) {
var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];
if (t) return (t = t.call(r)).next.bind(t);
if (Array.isArray(r) || (t = unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) {
t && (r = t);
var o = 0;
return function () {
return o >= r.length ? {
done: !0
} : {
done: !1,
value: r[o++]
};
};
}
throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
}
module.exports = _createForOfIteratorHelperLoose, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,16 @@
var getPrototypeOf = require("./getPrototypeOf.js");
var isNativeReflectConstruct = require("./isNativeReflectConstruct.js");
var possibleConstructorReturn = require("./possibleConstructorReturn.js");
function _createSuper(t) {
var r = isNativeReflectConstruct();
return function () {
var e,
o = getPrototypeOf(t);
if (r) {
var s = getPrototypeOf(this).constructor;
e = Reflect.construct(o, arguments, s);
} else e = o.apply(this, arguments);
return possibleConstructorReturn(this, e);
};
}
module.exports = _createSuper, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,250 @@
var toArray = require("./toArray.js");
var toPropertyKey = require("./toPropertyKey.js");
function _decorate(e, r, t, i) {
var o = _getDecoratorsApi();
if (i) for (var n = 0; n < i.length; n++) o = i[n](o);
var s = r(function (e) {
o.initializeInstanceElements(e, a.elements);
}, t),
a = o.decorateClass(_coalesceClassElements(s.d.map(_createElementDescriptor)), e);
return o.initializeClassElements(s.F, a.elements), o.runClassFinishers(s.F, a.finishers);
}
function _getDecoratorsApi() {
_getDecoratorsApi = function _getDecoratorsApi() {
return e;
};
var e = {
elementsDefinitionOrder: [["method"], ["field"]],
initializeInstanceElements: function initializeInstanceElements(e, r) {
["method", "field"].forEach(function (t) {
r.forEach(function (r) {
r.kind === t && "own" === r.placement && this.defineClassElement(e, r);
}, this);
}, this);
},
initializeClassElements: function initializeClassElements(e, r) {
var t = e.prototype;
["method", "field"].forEach(function (i) {
r.forEach(function (r) {
var o = r.placement;
if (r.kind === i && ("static" === o || "prototype" === o)) {
var n = "static" === o ? e : t;
this.defineClassElement(n, r);
}
}, this);
}, this);
},
defineClassElement: function defineClassElement(e, r) {
var t = r.descriptor;
if ("field" === r.kind) {
var i = r.initializer;
t = {
enumerable: t.enumerable,
writable: t.writable,
configurable: t.configurable,
value: void 0 === i ? void 0 : i.call(e)
};
}
Object.defineProperty(e, r.key, t);
},
decorateClass: function decorateClass(e, r) {
var t = [],
i = [],
o = {
"static": [],
prototype: [],
own: []
};
if (e.forEach(function (e) {
this.addElementPlacement(e, o);
}, this), e.forEach(function (e) {
if (!_hasDecorators(e)) return t.push(e);
var r = this.decorateElement(e, o);
t.push(r.element), t.push.apply(t, r.extras), i.push.apply(i, r.finishers);
}, this), !r) return {
elements: t,
finishers: i
};
var n = this.decorateConstructor(t, r);
return i.push.apply(i, n.finishers), n.finishers = i, n;
},
addElementPlacement: function addElementPlacement(e, r, t) {
var i = r[e.placement];
if (!t && -1 !== i.indexOf(e.key)) throw new TypeError("Duplicated element (" + e.key + ")");
i.push(e.key);
},
decorateElement: function decorateElement(e, r) {
for (var t = [], i = [], o = e.decorators, n = o.length - 1; n >= 0; n--) {
var s = r[e.placement];
s.splice(s.indexOf(e.key), 1);
var a = this.fromElementDescriptor(e),
l = this.toElementFinisherExtras((0, o[n])(a) || a);
e = l.element, this.addElementPlacement(e, r), l.finisher && i.push(l.finisher);
var c = l.extras;
if (c) {
for (var p = 0; p < c.length; p++) this.addElementPlacement(c[p], r);
t.push.apply(t, c);
}
}
return {
element: e,
finishers: i,
extras: t
};
},
decorateConstructor: function decorateConstructor(e, r) {
for (var t = [], i = r.length - 1; i >= 0; i--) {
var o = this.fromClassDescriptor(e),
n = this.toClassDescriptor((0, r[i])(o) || o);
if (void 0 !== n.finisher && t.push(n.finisher), void 0 !== n.elements) {
e = n.elements;
for (var s = 0; s < e.length - 1; s++) for (var a = s + 1; a < e.length; a++) if (e[s].key === e[a].key && e[s].placement === e[a].placement) throw new TypeError("Duplicated element (" + e[s].key + ")");
}
}
return {
elements: e,
finishers: t
};
},
fromElementDescriptor: function fromElementDescriptor(e) {
var r = {
kind: e.kind,
key: e.key,
placement: e.placement,
descriptor: e.descriptor
};
return Object.defineProperty(r, Symbol.toStringTag, {
value: "Descriptor",
configurable: !0
}), "field" === e.kind && (r.initializer = e.initializer), r;
},
toElementDescriptors: function toElementDescriptors(e) {
if (void 0 !== e) return toArray(e).map(function (e) {
var r = this.toElementDescriptor(e);
return this.disallowProperty(e, "finisher", "An element descriptor"), this.disallowProperty(e, "extras", "An element descriptor"), r;
}, this);
},
toElementDescriptor: function toElementDescriptor(e) {
var r = e.kind + "";
if ("method" !== r && "field" !== r) throw new TypeError('An element descriptor\'s .kind property must be either "method" or "field", but a decorator created an element descriptor with .kind "' + r + '"');
var t = toPropertyKey(e.key),
i = e.placement + "";
if ("static" !== i && "prototype" !== i && "own" !== i) throw new TypeError('An element descriptor\'s .placement property must be one of "static", "prototype" or "own", but a decorator created an element descriptor with .placement "' + i + '"');
var o = e.descriptor;
this.disallowProperty(e, "elements", "An element descriptor");
var n = {
kind: r,
key: t,
placement: i,
descriptor: Object.assign({}, o)
};
return "field" !== r ? this.disallowProperty(e, "initializer", "A method descriptor") : (this.disallowProperty(o, "get", "The property descriptor of a field descriptor"), this.disallowProperty(o, "set", "The property descriptor of a field descriptor"), this.disallowProperty(o, "value", "The property descriptor of a field descriptor"), n.initializer = e.initializer), n;
},
toElementFinisherExtras: function toElementFinisherExtras(e) {
return {
element: this.toElementDescriptor(e),
finisher: _optionalCallableProperty(e, "finisher"),
extras: this.toElementDescriptors(e.extras)
};
},
fromClassDescriptor: function fromClassDescriptor(e) {
var r = {
kind: "class",
elements: e.map(this.fromElementDescriptor, this)
};
return Object.defineProperty(r, Symbol.toStringTag, {
value: "Descriptor",
configurable: !0
}), r;
},
toClassDescriptor: function toClassDescriptor(e) {
var r = e.kind + "";
if ("class" !== r) throw new TypeError('A class descriptor\'s .kind property must be "class", but a decorator created a class descriptor with .kind "' + r + '"');
this.disallowProperty(e, "key", "A class descriptor"), this.disallowProperty(e, "placement", "A class descriptor"), this.disallowProperty(e, "descriptor", "A class descriptor"), this.disallowProperty(e, "initializer", "A class descriptor"), this.disallowProperty(e, "extras", "A class descriptor");
var t = _optionalCallableProperty(e, "finisher");
return {
elements: this.toElementDescriptors(e.elements),
finisher: t
};
},
runClassFinishers: function runClassFinishers(e, r) {
for (var t = 0; t < r.length; t++) {
var i = (0, r[t])(e);
if (void 0 !== i) {
if ("function" != typeof i) throw new TypeError("Finishers must return a constructor.");
e = i;
}
}
return e;
},
disallowProperty: function disallowProperty(e, r, t) {
if (void 0 !== e[r]) throw new TypeError(t + " can't have a ." + r + " property.");
}
};
return e;
}
function _createElementDescriptor(e) {
var r,
t = toPropertyKey(e.key);
"method" === e.kind ? r = {
value: e.value,
writable: !0,
configurable: !0,
enumerable: !1
} : "get" === e.kind ? r = {
get: e.value,
configurable: !0,
enumerable: !1
} : "set" === e.kind ? r = {
set: e.value,
configurable: !0,
enumerable: !1
} : "field" === e.kind && (r = {
configurable: !0,
writable: !0,
enumerable: !0
});
var i = {
kind: "field" === e.kind ? "field" : "method",
key: t,
placement: e["static"] ? "static" : "field" === e.kind ? "own" : "prototype",
descriptor: r
};
return e.decorators && (i.decorators = e.decorators), "field" === e.kind && (i.initializer = e.value), i;
}
function _coalesceGetterSetter(e, r) {
void 0 !== e.descriptor.get ? r.descriptor.get = e.descriptor.get : r.descriptor.set = e.descriptor.set;
}
function _coalesceClassElements(e) {
for (var r = [], isSameElement = function isSameElement(e) {
return "method" === e.kind && e.key === o.key && e.placement === o.placement;
}, t = 0; t < e.length; t++) {
var i,
o = e[t];
if ("method" === o.kind && (i = r.find(isSameElement))) {
if (_isDataDescriptor(o.descriptor) || _isDataDescriptor(i.descriptor)) {
if (_hasDecorators(o) || _hasDecorators(i)) throw new ReferenceError("Duplicated methods (" + o.key + ") can't be decorated.");
i.descriptor = o.descriptor;
} else {
if (_hasDecorators(o)) {
if (_hasDecorators(i)) throw new ReferenceError("Decorators can't be placed on different accessors with for the same property (" + o.key + ").");
i.decorators = o.decorators;
}
_coalesceGetterSetter(o, i);
}
} else r.push(o);
}
return r;
}
function _hasDecorators(e) {
return e.decorators && e.decorators.length;
}
function _isDataDescriptor(e) {
return void 0 !== e && !(void 0 === e.value && void 0 === e.writable);
}
function _optionalCallableProperty(e, r) {
var t = e[r];
if (void 0 !== t && "function" != typeof t) throw new TypeError("Expected '" + r + "' to be a function");
return t;
}
module.exports = _decorate, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,9 @@
function _defaults(e, r) {
for (var t = Object.getOwnPropertyNames(r), o = 0; o < t.length; o++) {
var n = t[o],
a = Object.getOwnPropertyDescriptor(r, n);
a && a.configurable && void 0 === e[n] && Object.defineProperty(e, n, a);
}
return e;
}
module.exports = _defaults, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,8 @@
function _defineAccessor(e, r, n, t) {
var c = {
configurable: !0,
enumerable: !0
};
return c[e] = t, Object.defineProperty(r, n, c);
}
module.exports = _defineAccessor, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,12 @@
function _defineEnumerableProperties(e, r) {
for (var t in r) {
var n = r[t];
n.configurable = n.enumerable = !0, "value" in n && (n.writable = !0), Object.defineProperty(e, t, n);
}
if (Object.getOwnPropertySymbols) for (var a = Object.getOwnPropertySymbols(r), b = 0; b < a.length; b++) {
var i = a[b];
(n = r[i]).configurable = n.enumerable = !0, "value" in n && (n.writable = !0), Object.defineProperty(e, i, n);
}
return e;
}
module.exports = _defineEnumerableProperties, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,10 @@
var toPropertyKey = require("./toPropertyKey.js");
function _defineProperty(e, r, t) {
return (r = toPropertyKey(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
module.exports = _defineProperty, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,28 @@
function dispose_SuppressedError(r, e) {
return "undefined" != typeof SuppressedError ? dispose_SuppressedError = SuppressedError : (dispose_SuppressedError = function dispose_SuppressedError(r, e) {
this.suppressed = e, this.error = r, this.stack = Error().stack;
}, dispose_SuppressedError.prototype = Object.create(Error.prototype, {
constructor: {
value: dispose_SuppressedError,
writable: !0,
configurable: !0
}
})), new dispose_SuppressedError(r, e);
}
function _dispose(r, e, s) {
function next() {
for (; r.length > 0;) try {
var o = r.pop(),
p = o.d.call(o.v);
if (o.a) return Promise.resolve(p).then(next, err);
} catch (r) {
return err(r);
}
if (s) throw e;
}
function err(r) {
return e = s ? new dispose_SuppressedError(e, r) : r, s = !0, next();
}
return next();
}
module.exports = _dispose, module.exports.__esModule = true, module.exports["default"] = module.exports;

View File

@ -0,0 +1,4 @@
function _AwaitValue(t) {
this.wrapped = t;
}
export { _AwaitValue as default };

View File

@ -0,0 +1,4 @@
function _OverloadYield(e, d) {
this.v = e, this.k = d;
}
export { _OverloadYield as default };

View File

@ -0,0 +1,9 @@
function _applyDecoratedDescriptor(i, e, r, n, l) {
var a = {};
return Object.keys(n).forEach(function (i) {
a[i] = n[i];
}), a.enumerable = !!a.enumerable, a.configurable = !!a.configurable, ("value" in a || a.initializer) && (a.writable = !0), a = r.slice().reverse().reduce(function (r, n) {
return n(i, e, r) || r;
}, a), l && void 0 !== a.initializer && (a.value = a.initializer ? a.initializer.call(l) : void 0, a.initializer = void 0), void 0 === a.initializer ? (Object.defineProperty(i, e, a), null) : a;
}
export { _applyDecoratedDescriptor as default };

View File

@ -0,0 +1,236 @@
import _typeof from "./typeof.js";
import setFunctionName from "./setFunctionName.js";
import toPropertyKey from "./toPropertyKey.js";
function old_createMetadataMethodsForProperty(e, t, a, r) {
return {
getMetadata: function getMetadata(o) {
old_assertNotFinished(r, "getMetadata"), old_assertMetadataKey(o);
var i = e[o];
if (void 0 !== i) if (1 === t) {
var n = i["public"];
if (void 0 !== n) return n[a];
} else if (2 === t) {
var l = i["private"];
if (void 0 !== l) return l.get(a);
} else if (Object.hasOwnProperty.call(i, "constructor")) return i.constructor;
},
setMetadata: function setMetadata(o, i) {
old_assertNotFinished(r, "setMetadata"), old_assertMetadataKey(o);
var n = e[o];
if (void 0 === n && (n = e[o] = {}), 1 === t) {
var l = n["public"];
void 0 === l && (l = n["public"] = {}), l[a] = i;
} else if (2 === t) {
var s = n.priv;
void 0 === s && (s = n["private"] = new Map()), s.set(a, i);
} else n.constructor = i;
}
};
}
function old_convertMetadataMapToFinal(e, t) {
var a = e[Symbol.metadata || Symbol["for"]("Symbol.metadata")],
r = Object.getOwnPropertySymbols(t);
if (0 !== r.length) {
for (var o = 0; o < r.length; o++) {
var i = r[o],
n = t[i],
l = a ? a[i] : null,
s = n["public"],
c = l ? l["public"] : null;
s && c && Object.setPrototypeOf(s, c);
var d = n["private"];
if (d) {
var u = Array.from(d.values()),
f = l ? l["private"] : null;
f && (u = u.concat(f)), n["private"] = u;
}
l && Object.setPrototypeOf(n, l);
}
a && Object.setPrototypeOf(t, a), e[Symbol.metadata || Symbol["for"]("Symbol.metadata")] = t;
}
}
function old_createAddInitializerMethod(e, t) {
return function (a) {
old_assertNotFinished(t, "addInitializer"), old_assertCallable(a, "An initializer"), e.push(a);
};
}
function old_memberDec(e, t, a, r, o, i, n, l, s) {
var c;
switch (i) {
case 1:
c = "accessor";
break;
case 2:
c = "method";
break;
case 3:
c = "getter";
break;
case 4:
c = "setter";
break;
default:
c = "field";
}
var d,
u,
f = {
kind: c,
name: l ? "#" + t : toPropertyKey(t),
isStatic: n,
isPrivate: l
},
p = {
v: !1
};
if (0 !== i && (f.addInitializer = old_createAddInitializerMethod(o, p)), l) {
d = 2, u = Symbol(t);
var v = {};
0 === i ? (v.get = a.get, v.set = a.set) : 2 === i ? v.get = function () {
return a.value;
} : (1 !== i && 3 !== i || (v.get = function () {
return a.get.call(this);
}), 1 !== i && 4 !== i || (v.set = function (e) {
a.set.call(this, e);
})), f.access = v;
} else d = 1, u = t;
try {
return e(s, Object.assign(f, old_createMetadataMethodsForProperty(r, d, u, p)));
} finally {
p.v = !0;
}
}
function old_assertNotFinished(e, t) {
if (e.v) throw Error("attempted to call " + t + " after decoration was finished");
}
function old_assertMetadataKey(e) {
if ("symbol" != _typeof(e)) throw new TypeError("Metadata keys must be symbols, received: " + e);
}
function old_assertCallable(e, t) {
if ("function" != typeof e) throw new TypeError(t + " must be a function");
}
function old_assertValidReturnValue(e, t) {
var a = _typeof(t);
if (1 === e) {
if ("object" !== a || null === t) throw new TypeError("accessor decorators must return an object with get, set, or init properties or void 0");
void 0 !== t.get && old_assertCallable(t.get, "accessor.get"), void 0 !== t.set && old_assertCallable(t.set, "accessor.set"), void 0 !== t.init && old_assertCallable(t.init, "accessor.init"), void 0 !== t.initializer && old_assertCallable(t.initializer, "accessor.initializer");
} else if ("function" !== a) throw new TypeError((0 === e ? "field" : 10 === e ? "class" : "method") + " decorators must return a function or void 0");
}
function old_getInit(e) {
var t;
return null == (t = e.init) && (t = e.initializer) && void 0 !== console && console.warn(".initializer has been renamed to .init as of March 2022"), t;
}
function old_applyMemberDec(e, t, a, r, o, i, n, l, s) {
var c,
d,
u,
f,
p,
v,
y,
h = a[0];
if (n ? (0 === o || 1 === o ? (c = {
get: a[3],
set: a[4]
}, u = "get") : 3 === o ? (c = {
get: a[3]
}, u = "get") : 4 === o ? (c = {
set: a[3]
}, u = "set") : c = {
value: a[3]
}, 0 !== o && (1 === o && setFunctionName(a[4], "#" + r, "set"), setFunctionName(a[3], "#" + r, u))) : 0 !== o && (c = Object.getOwnPropertyDescriptor(t, r)), 1 === o ? f = {
get: c.get,
set: c.set
} : 2 === o ? f = c.value : 3 === o ? f = c.get : 4 === o && (f = c.set), "function" == typeof h) void 0 !== (p = old_memberDec(h, r, c, l, s, o, i, n, f)) && (old_assertValidReturnValue(o, p), 0 === o ? d = p : 1 === o ? (d = old_getInit(p), v = p.get || f.get, y = p.set || f.set, f = {
get: v,
set: y
}) : f = p);else for (var m = h.length - 1; m >= 0; m--) {
var b;
void 0 !== (p = old_memberDec(h[m], r, c, l, s, o, i, n, f)) && (old_assertValidReturnValue(o, p), 0 === o ? b = p : 1 === o ? (b = old_getInit(p), v = p.get || f.get, y = p.set || f.set, f = {
get: v,
set: y
}) : f = p, void 0 !== b && (void 0 === d ? d = b : "function" == typeof d ? d = [d, b] : d.push(b)));
}
if (0 === o || 1 === o) {
if (void 0 === d) d = function d(e, t) {
return t;
};else if ("function" != typeof d) {
var g = d;
d = function d(e, t) {
for (var a = t, r = 0; r < g.length; r++) a = g[r].call(e, a);
return a;
};
} else {
var _ = d;
d = function d(e, t) {
return _.call(e, t);
};
}
e.push(d);
}
0 !== o && (1 === o ? (c.get = f.get, c.set = f.set) : 2 === o ? c.value = f : 3 === o ? c.get = f : 4 === o && (c.set = f), n ? 1 === o ? (e.push(function (e, t) {
return f.get.call(e, t);
}), e.push(function (e, t) {
return f.set.call(e, t);
})) : 2 === o ? e.push(f) : e.push(function (e, t) {
return f.call(e, t);
}) : Object.defineProperty(t, r, c));
}
function old_applyMemberDecs(e, t, a, r, o) {
for (var i, n, l = new Map(), s = new Map(), c = 0; c < o.length; c++) {
var d = o[c];
if (Array.isArray(d)) {
var u,
f,
p,
v = d[1],
y = d[2],
h = d.length > 3,
m = v >= 5;
if (m ? (u = t, f = r, 0 != (v -= 5) && (p = n = n || [])) : (u = t.prototype, f = a, 0 !== v && (p = i = i || [])), 0 !== v && !h) {
var b = m ? s : l,
g = b.get(y) || 0;
if (!0 === g || 3 === g && 4 !== v || 4 === g && 3 !== v) throw Error("Attempted to decorate a public method/accessor that has the same name as a previously decorated public method/accessor. This is not currently supported by the decorators plugin. Property name was: " + y);
!g && v > 2 ? b.set(y, v) : b.set(y, !0);
}
old_applyMemberDec(e, u, d, y, v, m, h, f, p);
}
}
old_pushInitializers(e, i), old_pushInitializers(e, n);
}
function old_pushInitializers(e, t) {
t && e.push(function (e) {
for (var a = 0; a < t.length; a++) t[a].call(e);
return e;
});
}
function old_applyClassDecs(e, t, a, r) {
if (r.length > 0) {
for (var o = [], i = t, n = t.name, l = r.length - 1; l >= 0; l--) {
var s = {
v: !1
};
try {
var c = Object.assign({
kind: "class",
name: n,
addInitializer: old_createAddInitializerMethod(o, s)
}, old_createMetadataMethodsForProperty(a, 0, n, s)),
d = r[l](i, c);
} finally {
s.v = !0;
}
void 0 !== d && (old_assertValidReturnValue(10, d), i = d);
}
e.push(i, function () {
for (var e = 0; e < o.length; e++) o[e].call(i);
});
}
}
function applyDecs(e, t, a) {
var r = [],
o = {},
i = {};
return old_applyMemberDecs(r, e, i, o, t), old_convertMetadataMapToFinal(e.prototype, i), old_applyClassDecs(r, e, o, a), old_convertMetadataMapToFinal(e, o), r;
}
export { applyDecs as default };

View File

@ -0,0 +1,184 @@
import _typeof from "./typeof.js";
function applyDecs2203Factory() {
function createAddInitializerMethod(e, t) {
return function (r) {
!function (e) {
if (e.v) throw Error("attempted to call addInitializer after decoration was finished");
}(t), assertCallable(r, "An initializer"), e.push(r);
};
}
function memberDec(e, t, r, a, n, i, s, o) {
var c;
switch (n) {
case 1:
c = "accessor";
break;
case 2:
c = "method";
break;
case 3:
c = "getter";
break;
case 4:
c = "setter";
break;
default:
c = "field";
}
var l,
u,
f = {
kind: c,
name: s ? "#" + t : t,
"static": i,
"private": s
},
p = {
v: !1
};
0 !== n && (f.addInitializer = createAddInitializerMethod(a, p)), 0 === n ? s ? (l = r.get, u = r.set) : (l = function l() {
return this[t];
}, u = function u(e) {
this[t] = e;
}) : 2 === n ? l = function l() {
return r.value;
} : (1 !== n && 3 !== n || (l = function l() {
return r.get.call(this);
}), 1 !== n && 4 !== n || (u = function u(e) {
r.set.call(this, e);
})), f.access = l && u ? {
get: l,
set: u
} : l ? {
get: l
} : {
set: u
};
try {
return e(o, f);
} finally {
p.v = !0;
}
}
function assertCallable(e, t) {
if ("function" != typeof e) throw new TypeError(t + " must be a function");
}
function assertValidReturnValue(e, t) {
var r = _typeof(t);
if (1 === e) {
if ("object" !== r || null === t) throw new TypeError("accessor decorators must return an object with get, set, or init properties or void 0");
void 0 !== t.get && assertCallable(t.get, "accessor.get"), void 0 !== t.set && assertCallable(t.set, "accessor.set"), void 0 !== t.init && assertCallable(t.init, "accessor.init");
} else if ("function" !== r) throw new TypeError((0 === e ? "field" : 10 === e ? "class" : "method") + " decorators must return a function or void 0");
}
function applyMemberDec(e, t, r, a, n, i, s, o) {
var c,
l,
u,
f,
p,
d,
h = r[0];
if (s ? c = 0 === n || 1 === n ? {
get: r[3],
set: r[4]
} : 3 === n ? {
get: r[3]
} : 4 === n ? {
set: r[3]
} : {
value: r[3]
} : 0 !== n && (c = Object.getOwnPropertyDescriptor(t, a)), 1 === n ? u = {
get: c.get,
set: c.set
} : 2 === n ? u = c.value : 3 === n ? u = c.get : 4 === n && (u = c.set), "function" == typeof h) void 0 !== (f = memberDec(h, a, c, o, n, i, s, u)) && (assertValidReturnValue(n, f), 0 === n ? l = f : 1 === n ? (l = f.init, p = f.get || u.get, d = f.set || u.set, u = {
get: p,
set: d
}) : u = f);else for (var v = h.length - 1; v >= 0; v--) {
var g;
void 0 !== (f = memberDec(h[v], a, c, o, n, i, s, u)) && (assertValidReturnValue(n, f), 0 === n ? g = f : 1 === n ? (g = f.init, p = f.get || u.get, d = f.set || u.set, u = {
get: p,
set: d
}) : u = f, void 0 !== g && (void 0 === l ? l = g : "function" == typeof l ? l = [l, g] : l.push(g)));
}
if (0 === n || 1 === n) {
if (void 0 === l) l = function l(e, t) {
return t;
};else if ("function" != typeof l) {
var y = l;
l = function l(e, t) {
for (var r = t, a = 0; a < y.length; a++) r = y[a].call(e, r);
return r;
};
} else {
var m = l;
l = function l(e, t) {
return m.call(e, t);
};
}
e.push(l);
}
0 !== n && (1 === n ? (c.get = u.get, c.set = u.set) : 2 === n ? c.value = u : 3 === n ? c.get = u : 4 === n && (c.set = u), s ? 1 === n ? (e.push(function (e, t) {
return u.get.call(e, t);
}), e.push(function (e, t) {
return u.set.call(e, t);
})) : 2 === n ? e.push(u) : e.push(function (e, t) {
return u.call(e, t);
}) : Object.defineProperty(t, a, c));
}
function pushInitializers(e, t) {
t && e.push(function (e) {
for (var r = 0; r < t.length; r++) t[r].call(e);
return e;
});
}
return function (e, t, r) {
var a = [];
return function (e, t, r) {
for (var a, n, i = new Map(), s = new Map(), o = 0; o < r.length; o++) {
var c = r[o];
if (Array.isArray(c)) {
var l,
u,
f = c[1],
p = c[2],
d = c.length > 3,
h = f >= 5;
if (h ? (l = t, 0 != (f -= 5) && (u = n = n || [])) : (l = t.prototype, 0 !== f && (u = a = a || [])), 0 !== f && !d) {
var v = h ? s : i,
g = v.get(p) || 0;
if (!0 === g || 3 === g && 4 !== f || 4 === g && 3 !== f) throw Error("Attempted to decorate a public method/accessor that has the same name as a previously decorated public method/accessor. This is not currently supported by the decorators plugin. Property name was: " + p);
!g && f > 2 ? v.set(p, f) : v.set(p, !0);
}
applyMemberDec(e, l, c, p, f, h, d, u);
}
}
pushInitializers(e, a), pushInitializers(e, n);
}(a, e, t), function (e, t, r) {
if (r.length > 0) {
for (var a = [], n = t, i = t.name, s = r.length - 1; s >= 0; s--) {
var o = {
v: !1
};
try {
var c = r[s](n, {
kind: "class",
name: i,
addInitializer: createAddInitializerMethod(a, o)
});
} finally {
o.v = !0;
}
void 0 !== c && (assertValidReturnValue(10, c), n = c);
}
e.push(n, function () {
for (var e = 0; e < a.length; e++) a[e].call(n);
});
}
}(a, e, r), a;
};
}
var applyDecs2203Impl;
function applyDecs2203(e, t, r) {
return (applyDecs2203Impl = applyDecs2203Impl || applyDecs2203Factory())(e, t, r);
}
export { applyDecs2203 as default };

View File

@ -0,0 +1,191 @@
import _typeof from "./typeof.js";
import setFunctionName from "./setFunctionName.js";
import toPropertyKey from "./toPropertyKey.js";
function applyDecs2203RFactory() {
function createAddInitializerMethod(e, t) {
return function (r) {
!function (e) {
if (e.v) throw Error("attempted to call addInitializer after decoration was finished");
}(t), assertCallable(r, "An initializer"), e.push(r);
};
}
function memberDec(e, t, r, n, a, i, o, s) {
var c;
switch (a) {
case 1:
c = "accessor";
break;
case 2:
c = "method";
break;
case 3:
c = "getter";
break;
case 4:
c = "setter";
break;
default:
c = "field";
}
var l,
u,
f = {
kind: c,
name: o ? "#" + t : toPropertyKey(t),
"static": i,
"private": o
},
p = {
v: !1
};
0 !== a && (f.addInitializer = createAddInitializerMethod(n, p)), 0 === a ? o ? (l = r.get, u = r.set) : (l = function l() {
return this[t];
}, u = function u(e) {
this[t] = e;
}) : 2 === a ? l = function l() {
return r.value;
} : (1 !== a && 3 !== a || (l = function l() {
return r.get.call(this);
}), 1 !== a && 4 !== a || (u = function u(e) {
r.set.call(this, e);
})), f.access = l && u ? {
get: l,
set: u
} : l ? {
get: l
} : {
set: u
};
try {
return e(s, f);
} finally {
p.v = !0;
}
}
function assertCallable(e, t) {
if ("function" != typeof e) throw new TypeError(t + " must be a function");
}
function assertValidReturnValue(e, t) {
var r = _typeof(t);
if (1 === e) {
if ("object" !== r || null === t) throw new TypeError("accessor decorators must return an object with get, set, or init properties or void 0");
void 0 !== t.get && assertCallable(t.get, "accessor.get"), void 0 !== t.set && assertCallable(t.set, "accessor.set"), void 0 !== t.init && assertCallable(t.init, "accessor.init");
} else if ("function" !== r) throw new TypeError((0 === e ? "field" : 10 === e ? "class" : "method") + " decorators must return a function or void 0");
}
function applyMemberDec(e, t, r, n, a, i, o, s) {
var c,
l,
u,
f,
p,
d,
h,
v = r[0];
if (o ? (0 === a || 1 === a ? (c = {
get: r[3],
set: r[4]
}, u = "get") : 3 === a ? (c = {
get: r[3]
}, u = "get") : 4 === a ? (c = {
set: r[3]
}, u = "set") : c = {
value: r[3]
}, 0 !== a && (1 === a && setFunctionName(r[4], "#" + n, "set"), setFunctionName(r[3], "#" + n, u))) : 0 !== a && (c = Object.getOwnPropertyDescriptor(t, n)), 1 === a ? f = {
get: c.get,
set: c.set
} : 2 === a ? f = c.value : 3 === a ? f = c.get : 4 === a && (f = c.set), "function" == typeof v) void 0 !== (p = memberDec(v, n, c, s, a, i, o, f)) && (assertValidReturnValue(a, p), 0 === a ? l = p : 1 === a ? (l = p.init, d = p.get || f.get, h = p.set || f.set, f = {
get: d,
set: h
}) : f = p);else for (var g = v.length - 1; g >= 0; g--) {
var y;
void 0 !== (p = memberDec(v[g], n, c, s, a, i, o, f)) && (assertValidReturnValue(a, p), 0 === a ? y = p : 1 === a ? (y = p.init, d = p.get || f.get, h = p.set || f.set, f = {
get: d,
set: h
}) : f = p, void 0 !== y && (void 0 === l ? l = y : "function" == typeof l ? l = [l, y] : l.push(y)));
}
if (0 === a || 1 === a) {
if (void 0 === l) l = function l(e, t) {
return t;
};else if ("function" != typeof l) {
var m = l;
l = function l(e, t) {
for (var r = t, n = 0; n < m.length; n++) r = m[n].call(e, r);
return r;
};
} else {
var b = l;
l = function l(e, t) {
return b.call(e, t);
};
}
e.push(l);
}
0 !== a && (1 === a ? (c.get = f.get, c.set = f.set) : 2 === a ? c.value = f : 3 === a ? c.get = f : 4 === a && (c.set = f), o ? 1 === a ? (e.push(function (e, t) {
return f.get.call(e, t);
}), e.push(function (e, t) {
return f.set.call(e, t);
})) : 2 === a ? e.push(f) : e.push(function (e, t) {
return f.call(e, t);
}) : Object.defineProperty(t, n, c));
}
function applyMemberDecs(e, t) {
for (var r, n, a = [], i = new Map(), o = new Map(), s = 0; s < t.length; s++) {
var c = t[s];
if (Array.isArray(c)) {
var l,
u,
f = c[1],
p = c[2],
d = c.length > 3,
h = f >= 5;
if (h ? (l = e, 0 != (f -= 5) && (u = n = n || [])) : (l = e.prototype, 0 !== f && (u = r = r || [])), 0 !== f && !d) {
var v = h ? o : i,
g = v.get(p) || 0;
if (!0 === g || 3 === g && 4 !== f || 4 === g && 3 !== f) throw Error("Attempted to decorate a public method/accessor that has the same name as a previously decorated public method/accessor. This is not currently supported by the decorators plugin. Property name was: " + p);
!g && f > 2 ? v.set(p, f) : v.set(p, !0);
}
applyMemberDec(a, l, c, p, f, h, d, u);
}
}
return pushInitializers(a, r), pushInitializers(a, n), a;
}
function pushInitializers(e, t) {
t && e.push(function (e) {
for (var r = 0; r < t.length; r++) t[r].call(e);
return e;
});
}
return function (e, t, r) {
return {
e: applyMemberDecs(e, t),
get c() {
return function (e, t) {
if (t.length > 0) {
for (var r = [], n = e, a = e.name, i = t.length - 1; i >= 0; i--) {
var o = {
v: !1
};
try {
var s = t[i](n, {
kind: "class",
name: a,
addInitializer: createAddInitializerMethod(r, o)
});
} finally {
o.v = !0;
}
void 0 !== s && (assertValidReturnValue(10, s), n = s);
}
return [n, function () {
for (var e = 0; e < r.length; e++) r[e].call(n);
}];
}
}(e, r);
}
};
};
}
function applyDecs2203R(e, t, r) {
return (applyDecs2203R = applyDecs2203RFactory())(e, t, r);
}
export { applyDecs2203R as default };

View File

@ -0,0 +1,222 @@
import _typeof from "./typeof.js";
import checkInRHS from "./checkInRHS.js";
import setFunctionName from "./setFunctionName.js";
import toPropertyKey from "./toPropertyKey.js";
function applyDecs2301Factory() {
function createAddInitializerMethod(e, t) {
return function (r) {
!function (e) {
if (e.v) throw Error("attempted to call addInitializer after decoration was finished");
}(t), assertCallable(r, "An initializer"), e.push(r);
};
}
function assertInstanceIfPrivate(e, t) {
if (!e(t)) throw new TypeError("Attempted to access private element on non-instance");
}
function memberDec(e, t, r, n, a, i, s, o, c) {
var u;
switch (a) {
case 1:
u = "accessor";
break;
case 2:
u = "method";
break;
case 3:
u = "getter";
break;
case 4:
u = "setter";
break;
default:
u = "field";
}
var l,
f,
p = {
kind: u,
name: s ? "#" + t : toPropertyKey(t),
"static": i,
"private": s
},
d = {
v: !1
};
if (0 !== a && (p.addInitializer = createAddInitializerMethod(n, d)), s || 0 !== a && 2 !== a) {
if (2 === a) l = function l(e) {
return assertInstanceIfPrivate(c, e), r.value;
};else {
var h = 0 === a || 1 === a;
(h || 3 === a) && (l = s ? function (e) {
return assertInstanceIfPrivate(c, e), r.get.call(e);
} : function (e) {
return r.get.call(e);
}), (h || 4 === a) && (f = s ? function (e, t) {
assertInstanceIfPrivate(c, e), r.set.call(e, t);
} : function (e, t) {
r.set.call(e, t);
});
}
} else l = function l(e) {
return e[t];
}, 0 === a && (f = function f(e, r) {
e[t] = r;
});
var v = s ? c.bind() : function (e) {
return t in e;
};
p.access = l && f ? {
get: l,
set: f,
has: v
} : l ? {
get: l,
has: v
} : {
set: f,
has: v
};
try {
return e(o, p);
} finally {
d.v = !0;
}
}
function assertCallable(e, t) {
if ("function" != typeof e) throw new TypeError(t + " must be a function");
}
function assertValidReturnValue(e, t) {
var r = _typeof(t);
if (1 === e) {
if ("object" !== r || null === t) throw new TypeError("accessor decorators must return an object with get, set, or init properties or void 0");
void 0 !== t.get && assertCallable(t.get, "accessor.get"), void 0 !== t.set && assertCallable(t.set, "accessor.set"), void 0 !== t.init && assertCallable(t.init, "accessor.init");
} else if ("function" !== r) throw new TypeError((0 === e ? "field" : 10 === e ? "class" : "method") + " decorators must return a function or void 0");
}
function curryThis2(e) {
return function (t) {
e(this, t);
};
}
function applyMemberDec(e, t, r, n, a, i, s, o, c) {
var u,
l,
f,
p,
d,
h,
v,
y,
g = r[0];
if (s ? (0 === a || 1 === a ? (u = {
get: (d = r[3], function () {
return d(this);
}),
set: curryThis2(r[4])
}, f = "get") : 3 === a ? (u = {
get: r[3]
}, f = "get") : 4 === a ? (u = {
set: r[3]
}, f = "set") : u = {
value: r[3]
}, 0 !== a && (1 === a && setFunctionName(u.set, "#" + n, "set"), setFunctionName(u[f || "value"], "#" + n, f))) : 0 !== a && (u = Object.getOwnPropertyDescriptor(t, n)), 1 === a ? p = {
get: u.get,
set: u.set
} : 2 === a ? p = u.value : 3 === a ? p = u.get : 4 === a && (p = u.set), "function" == typeof g) void 0 !== (h = memberDec(g, n, u, o, a, i, s, p, c)) && (assertValidReturnValue(a, h), 0 === a ? l = h : 1 === a ? (l = h.init, v = h.get || p.get, y = h.set || p.set, p = {
get: v,
set: y
}) : p = h);else for (var m = g.length - 1; m >= 0; m--) {
var b;
void 0 !== (h = memberDec(g[m], n, u, o, a, i, s, p, c)) && (assertValidReturnValue(a, h), 0 === a ? b = h : 1 === a ? (b = h.init, v = h.get || p.get, y = h.set || p.set, p = {
get: v,
set: y
}) : p = h, void 0 !== b && (void 0 === l ? l = b : "function" == typeof l ? l = [l, b] : l.push(b)));
}
if (0 === a || 1 === a) {
if (void 0 === l) l = function l(e, t) {
return t;
};else if ("function" != typeof l) {
var I = l;
l = function l(e, t) {
for (var r = t, n = 0; n < I.length; n++) r = I[n].call(e, r);
return r;
};
} else {
var w = l;
l = function l(e, t) {
return w.call(e, t);
};
}
e.push(l);
}
0 !== a && (1 === a ? (u.get = p.get, u.set = p.set) : 2 === a ? u.value = p : 3 === a ? u.get = p : 4 === a && (u.set = p), s ? 1 === a ? (e.push(function (e, t) {
return p.get.call(e, t);
}), e.push(function (e, t) {
return p.set.call(e, t);
})) : 2 === a ? e.push(p) : e.push(function (e, t) {
return p.call(e, t);
}) : Object.defineProperty(t, n, u));
}
function applyMemberDecs(e, t, r) {
for (var n, a, i, s = [], o = new Map(), c = new Map(), u = 0; u < t.length; u++) {
var l = t[u];
if (Array.isArray(l)) {
var f,
p,
d = l[1],
h = l[2],
v = l.length > 3,
y = d >= 5,
g = r;
if (y ? (f = e, 0 != (d -= 5) && (p = a = a || []), v && !i && (i = function i(t) {
return checkInRHS(t) === e;
}), g = i) : (f = e.prototype, 0 !== d && (p = n = n || [])), 0 !== d && !v) {
var m = y ? c : o,
b = m.get(h) || 0;
if (!0 === b || 3 === b && 4 !== d || 4 === b && 3 !== d) throw Error("Attempted to decorate a public method/accessor that has the same name as a previously decorated public method/accessor. This is not currently supported by the decorators plugin. Property name was: " + h);
!b && d > 2 ? m.set(h, d) : m.set(h, !0);
}
applyMemberDec(s, f, l, h, d, y, v, p, g);
}
}
return pushInitializers(s, n), pushInitializers(s, a), s;
}
function pushInitializers(e, t) {
t && e.push(function (e) {
for (var r = 0; r < t.length; r++) t[r].call(e);
return e;
});
}
return function (e, t, r, n) {
return {
e: applyMemberDecs(e, t, n),
get c() {
return function (e, t) {
if (t.length > 0) {
for (var r = [], n = e, a = e.name, i = t.length - 1; i >= 0; i--) {
var s = {
v: !1
};
try {
var o = t[i](n, {
kind: "class",
name: a,
addInitializer: createAddInitializerMethod(r, s)
});
} finally {
s.v = !0;
}
void 0 !== o && (assertValidReturnValue(10, o), n = o);
}
return [n, function () {
for (var e = 0; e < r.length; e++) r[e].call(n);
}];
}
}(e, r);
}
};
};
}
function applyDecs2301(e, t, r, n) {
return (applyDecs2301 = applyDecs2301Factory())(e, t, r, n);
}
export { applyDecs2301 as default };

View File

@ -0,0 +1,133 @@
import _typeof from "./typeof.js";
import checkInRHS from "./checkInRHS.js";
import setFunctionName from "./setFunctionName.js";
import toPropertyKey from "./toPropertyKey.js";
function applyDecs2305(e, t, r, n, o, a) {
function i(e, t, r) {
return function (n, o) {
return r && r(n), e[t].call(n, o);
};
}
function c(e, t) {
for (var r = 0; r < e.length; r++) e[r].call(t);
return t;
}
function s(e, t, r, n) {
if ("function" != typeof e && (n || void 0 !== e)) throw new TypeError(t + " must " + (r || "be") + " a function" + (n ? "" : " or undefined"));
return e;
}
function applyDec(e, t, r, n, o, a, c, u, l, f, p, d, h) {
function m(e) {
if (!h(e)) throw new TypeError("Attempted to access private element on non-instance");
}
var y,
v = t[0],
g = t[3],
b = !u;
if (!b) {
r || Array.isArray(v) || (v = [v]);
var w = {},
S = [],
A = 3 === o ? "get" : 4 === o || d ? "set" : "value";
f ? (p || d ? w = {
get: setFunctionName(function () {
return g(this);
}, n, "get"),
set: function set(e) {
t[4](this, e);
}
} : w[A] = g, p || setFunctionName(w[A], n, 2 === o ? "" : A)) : p || (w = Object.getOwnPropertyDescriptor(e, n));
}
for (var P = e, j = v.length - 1; j >= 0; j -= r ? 2 : 1) {
var D = v[j],
E = r ? v[j - 1] : void 0,
I = {},
O = {
kind: ["field", "accessor", "method", "getter", "setter", "class"][o],
name: n,
metadata: a,
addInitializer: function (e, t) {
if (e.v) throw Error("attempted to call addInitializer after decoration was finished");
s(t, "An initializer", "be", !0), c.push(t);
}.bind(null, I)
};
try {
if (b) (y = s(D.call(E, P, O), "class decorators", "return")) && (P = y);else {
var k, F;
O["static"] = l, O["private"] = f, f ? 2 === o ? k = function k(e) {
return m(e), w.value;
} : (o < 4 && (k = i(w, "get", m)), 3 !== o && (F = i(w, "set", m))) : (k = function k(e) {
return e[n];
}, (o < 2 || 4 === o) && (F = function F(e, t) {
e[n] = t;
}));
var N = O.access = {
has: f ? h.bind() : function (e) {
return n in e;
}
};
if (k && (N.get = k), F && (N.set = F), P = D.call(E, d ? {
get: w.get,
set: w.set
} : w[A], O), d) {
if ("object" == _typeof(P) && P) (y = s(P.get, "accessor.get")) && (w.get = y), (y = s(P.set, "accessor.set")) && (w.set = y), (y = s(P.init, "accessor.init")) && S.push(y);else if (void 0 !== P) throw new TypeError("accessor decorators must return an object with get, set, or init properties or void 0");
} else s(P, (p ? "field" : "method") + " decorators", "return") && (p ? S.push(P) : w[A] = P);
}
} finally {
I.v = !0;
}
}
return (p || d) && u.push(function (e, t) {
for (var r = S.length - 1; r >= 0; r--) t = S[r].call(e, t);
return t;
}), p || b || (f ? d ? u.push(i(w, "get"), i(w, "set")) : u.push(2 === o ? w[A] : i.call.bind(w[A])) : Object.defineProperty(e, n, w)), P;
}
function u(e, t) {
return Object.defineProperty(e, Symbol.metadata || Symbol["for"]("Symbol.metadata"), {
configurable: !0,
enumerable: !0,
value: t
});
}
if (arguments.length >= 6) var l = a[Symbol.metadata || Symbol["for"]("Symbol.metadata")];
var f = Object.create(null == l ? null : l),
p = function (e, t, r, n) {
var o,
a,
i = [],
s = function s(t) {
return checkInRHS(t) === e;
},
u = new Map();
function l(e) {
e && i.push(c.bind(null, e));
}
for (var f = 0; f < t.length; f++) {
var p = t[f];
if (Array.isArray(p)) {
var d = p[1],
h = p[2],
m = p.length > 3,
y = 16 & d,
v = !!(8 & d),
g = 0 == (d &= 7),
b = h + "/" + v;
if (!g && !m) {
var w = u.get(b);
if (!0 === w || 3 === w && 4 !== d || 4 === w && 3 !== d) throw Error("Attempted to decorate a public method/accessor that has the same name as a previously decorated public method/accessor. This is not currently supported by the decorators plugin. Property name was: " + h);
u.set(b, !(d > 2) || d);
}
applyDec(v ? e : e.prototype, p, y, m ? "#" + h : toPropertyKey(h), d, n, v ? a = a || [] : o = o || [], i, v, m, g, 1 === d, v && m ? s : r);
}
}
return l(o), l(a), i;
}(e, t, o, f);
return r.length || u(e, f), {
e: p,
get c() {
var t = [];
return r.length && [u(applyDec(e, [r], n, e.name, 5, f, t), f), c.bind(null, t, e)];
}
};
}
export { applyDecs2305 as default };

View File

@ -0,0 +1,124 @@
import _typeof from "./typeof.js";
import checkInRHS from "./checkInRHS.js";
import setFunctionName from "./setFunctionName.js";
import toPropertyKey from "./toPropertyKey.js";
function applyDecs2311(e, t, n, r, o, i) {
var a,
c,
u,
s,
f,
l,
p,
d = Symbol.metadata || Symbol["for"]("Symbol.metadata"),
m = Object.defineProperty,
h = Object.create,
y = [h(null), h(null)],
v = t.length;
function g(t, n, r) {
return function (o, i) {
n && (i = o, o = e);
for (var a = 0; a < t.length; a++) i = t[a].apply(o, r ? [i] : []);
return r ? i : o;
};
}
function b(e, t, n, r) {
if ("function" != typeof e && (r || void 0 !== e)) throw new TypeError(t + " must " + (n || "be") + " a function" + (r ? "" : " or undefined"));
return e;
}
function applyDec(e, t, n, r, o, i, u, s, f, l, p) {
function d(e) {
if (!p(e)) throw new TypeError("Attempted to access private element on non-instance");
}
var h = [].concat(t[0]),
v = t[3],
w = !u,
D = 1 === o,
S = 3 === o,
j = 4 === o,
E = 2 === o;
function I(t, n, r) {
return function (o, i) {
return n && (i = o, o = e), r && r(o), P[t].call(o, i);
};
}
if (!w) {
var P = {},
k = [],
F = S ? "get" : j || D ? "set" : "value";
if (f ? (l || D ? P = {
get: setFunctionName(function () {
return v(this);
}, r, "get"),
set: function set(e) {
t[4](this, e);
}
} : P[F] = v, l || setFunctionName(P[F], r, E ? "" : F)) : l || (P = Object.getOwnPropertyDescriptor(e, r)), !l && !f) {
if ((c = y[+s][r]) && 7 !== (c ^ o)) throw Error("Decorating two elements with the same name (" + P[F].name + ") is not supported yet");
y[+s][r] = o < 3 ? 1 : o;
}
}
for (var N = e, O = h.length - 1; O >= 0; O -= n ? 2 : 1) {
var T = b(h[O], "A decorator", "be", !0),
z = n ? h[O - 1] : void 0,
A = {},
H = {
kind: ["field", "accessor", "method", "getter", "setter", "class"][o],
name: r,
metadata: a,
addInitializer: function (e, t) {
if (e.v) throw new TypeError("attempted to call addInitializer after decoration was finished");
b(t, "An initializer", "be", !0), i.push(t);
}.bind(null, A)
};
if (w) c = T.call(z, N, H), A.v = 1, b(c, "class decorators", "return") && (N = c);else if (H["static"] = s, H["private"] = f, c = H.access = {
has: f ? p.bind() : function (e) {
return r in e;
}
}, j || (c.get = f ? E ? function (e) {
return d(e), P.value;
} : I("get", 0, d) : function (e) {
return e[r];
}), E || S || (c.set = f ? I("set", 0, d) : function (e, t) {
e[r] = t;
}), N = T.call(z, D ? {
get: P.get,
set: P.set
} : P[F], H), A.v = 1, D) {
if ("object" == _typeof(N) && N) (c = b(N.get, "accessor.get")) && (P.get = c), (c = b(N.set, "accessor.set")) && (P.set = c), (c = b(N.init, "accessor.init")) && k.unshift(c);else if (void 0 !== N) throw new TypeError("accessor decorators must return an object with get, set, or init properties or undefined");
} else b(N, (l ? "field" : "method") + " decorators", "return") && (l ? k.unshift(N) : P[F] = N);
}
return o < 2 && u.push(g(k, s, 1), g(i, s, 0)), l || w || (f ? D ? u.splice(-1, 0, I("get", s), I("set", s)) : u.push(E ? P[F] : b.call.bind(P[F])) : m(e, r, P)), N;
}
function w(e) {
return m(e, d, {
configurable: !0,
enumerable: !0,
value: a
});
}
return void 0 !== i && (a = i[d]), a = h(null == a ? null : a), f = [], l = function l(e) {
e && f.push(g(e));
}, p = function p(t, r) {
for (var i = 0; i < n.length; i++) {
var a = n[i],
c = a[1],
l = 7 & c;
if ((8 & c) == t && !l == r) {
var p = a[2],
d = !!a[3],
m = 16 & c;
applyDec(t ? e : e.prototype, a, m, d ? "#" + p : toPropertyKey(p), l, l < 2 ? [] : t ? s = s || [] : u = u || [], f, !!t, d, r, t && d ? function (t) {
return checkInRHS(t) === e;
} : o);
}
}
}, p(8, 0), p(0, 0), p(8, 1), p(0, 1), l(u), l(s), c = f, v || w(e), {
e: c,
get c() {
var n = [];
return v && [w(e = applyDec(e, [t], r, e.name, 5, n)), g(n, 1)];
}
};
}
export { applyDecs2311 as default };

View File

@ -0,0 +1,6 @@
function _arrayLikeToArray(r, a) {
(null == a || a > r.length) && (a = r.length);
for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e];
return n;
}
export { _arrayLikeToArray as default };

View File

@ -0,0 +1,4 @@
function _arrayWithHoles(r) {
if (Array.isArray(r)) return r;
}
export { _arrayWithHoles as default };

Some files were not shown because too many files have changed in this diff Show More