// Configuration of periodic events in CoBiE time // Each object describes when the event occurs and how often it repeats. // // Fields: // start - CoBiE timestamp when the first occurrence happens. // end - optional CoBiE timestamp after which the event stops. // unit - the unit of the recurrence ("second", "xenocycle", "quantic", // "chronon", "eonstrip", "megasequence", "cosmocycle", ...). // interval - how many units between occurrences (1 = every unit, // 2 = every second unit, ...). // label - short description displayed on the calendar. // duration - optional length of the event in seconds. window.SPECIAL_EVENTS = [ { start: '49f4.9332', label: 'Afina', unit: 'cosmocycle', interval: 1 }, { start: '11e5.f552', label: 'Oleks', unit: 'cosmocycle', interval: 1 }, { start: '4d07.a2b2', label: 'Vincent', unit: 'cosmocycle', interval: 1 }, { start: '3edc.d430', label: 'Hochzeitstag', unit: 'cosmocycle', interval: 1 }, { start: '330d.d4ae', label: 'Zusammentag', unit: 'cosmocycle', interval: 1 }, { start: '11de.0c52', label: 'Anna', unit: 'cosmocycle', interval: 1 }, { start: '467f.ae61', label: 'Iris', unit: 'cosmocycle', interval: 1 }, { start: '6854.7a75', cobie: '6854.7a75', label: 'Sleep', unit: 'second', interval: 86400, duration: 28800 } ];